preg_match_all javascript代码

时间:2017-03-11 21:32:53

标签: regex preg-match-all

大家好,我最近遇到了PHP preg_match_all()。 我在REGEXP上真的很糟糕,我必须找到:

var nx = (100000 + x) * 23452;

preg_match_all(),我这样做:

preg_match_all('/var nx = (100000 + x) * (.*);/', $html, $token);
return $token[1][0];

我想在我的阵列上输出这样的输出:

23452

请有人帮助我,解释会很感激。感谢。

0 个答案:

没有答案