php – 计算开始的空格

前端之家收集整理的这篇文章主要介绍了php – 计算开始的空格前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想计算(在单个正则表达式中)字符串开头的所有空格.

我的想法:

$identSize = preg_match_all("/^( )[^ ]/",$line,$matches);

例如:

$example1 = " Foo"; // should return 1
$example2 = "  Bar"; // should return 2
$example3 = "   Foo bar"; // should return 3,not 4!

任何提示,我如何解决它?

$identSize = strlen($line)-strlen(ltrim($line));

或者,如果你想要正则表达式,

preg_match('/^(\s+)/',$matches);
$identSize = strlen($matches[1]);
原文链接:https://www.f2er.com/php/138996.html

猜你在找的PHP相关文章