标签: php regex
我的文本中有多种变量以这种格式出现:
Example text will %%include%% these %%parameters%%
我正在尝试使用它:
preg_match('/%%[\s\S]*?%%/i',$output, $matches);
但出于某种原因,我只得到第一场比赛,任何想法?
答案 0 :(得分:6)
使用preg_match_all,因为您需要多次匹配。