我想在一個字符串的開頭計數(在一個正則表達式中)所有空格。開始計算空白
我的想法:
$identSize = preg_match_all("/^()[^ ]/", $line, $matches);
例如:
$example1 = " Foo"; // should return 1
$example2 = " Bar"; // should return 2
$example3 = " Foo bar"; // should return 3, not 4!
任何提示,我怎麼能解決這個問題?
第一個是聰明的。我可以想象它比preg_match版本更快。 – Powertieke
+1,但您的第一個版本只考慮空格,您可能還想包含其他空格字符。 – codaddict
@codaddict雖然OP的問題是計算空格,所以如果有任何關於指定正則表達式的註釋。 –