php – 计算开始的空格
发布时间:2020-12-13 13:52:03 所属栏目:PHP教程 来源:网络整理
导读:我想计算(在单个正则表达式中)字符串开头的所有空格. 我的想法: $identSize = preg_match_all("/^( )[^ ]/",$line,$matches); 例如: $example1 = " Foo"; // should return 1$example2 = " Bar"; // should return 2$example3 = " Foo bar"; // should ret
我想计算(在单个正则表达式中)字符串开头的所有空格.
我的想法: $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]); (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |