这个简单的正则表达式:
~^(\d{6})~
不使用PHP preg_match。为什么呢?
preg_match('~^(\d{6})~', $filtered, $matchesAs);
$ filtered变量内容为:
103031Theory and blahblah from blahblahblah421001279Martin Pascal, Michael TruthLSS
我希望第一次出现在" 103031"或者在行的最开始的任何六个数字组。正则表达式在在线测试人员中运行正常,但是当我尝试使用" preg_match" $matchesAs
是空的。 (\d{6})
在没有^
...