^符号与正则表达式和PHP不工作

时间:2016-03-03 12:19:27

标签: php regex

这个简单的正则表达式:

~^(\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})在没有^ ...

的情况下效果很好

0 个答案:

没有答案