正则表达式匹配以%%开头和结尾的字符串

时间:2012-06-17 11:55:24

标签: php regex

我的文本中有多种变量以这种格式出现:

Example text will %%include%% these %%parameters%%

我正在尝试使用它:

preg_match('/%%[\s\S]*?%%/i',$output, $matches);

但出于某种原因,我只得到第一场比赛,任何想法?

1 个答案:

答案 0 :(得分:6)

使用preg_match_all,因为您需要多次匹配。