需要PHP preg模式

时间:2014-07-01 13:55:50

标签: php regex preg-match

0 10 2 012 11 12 12 test -f 13 x   xx
0 2   102 012 12 12 test -f 11 xxddd 22x
0 102 01 2  1    12   12 test -f 12 xxx

我需要使用-f找到preg_match()参数后面的数字(1到5位数字)。

对于PCRE比赛,我总是很蠢。

我与在线preg测试人员一起玩,并且被\(.*)-f(\d{1,5})(.*)$\

困住了

1 个答案:

答案 0 :(得分:1)

哦,我没注意到我有多接近它:

\^.* -f (\d{1,4}).*$\

Array
(
    [0] =>     0 10 2 012 11 12 12 test -f 13 x   xx
    [1] => 13
)