0
include_once($pathToRoot.'header.php');  
echo('</div>');

assume you have variations on the above code across hundreds of files, how do you match against the first occurrence of

</div>

after

header.php' 

?

4

2 回答 2

2

在查找字段中: (?s)(header\.php'.+?)</div>

在替换中(如果你用什么替换</div></test>$1</test>

于 2013-06-12T17:10:04.057 回答
0

我不知道 sublimetext2 但正则表达式看起来像这样:

/include_once\($pathToRoot.'header.php'\);(.*?)(<\/div>)/s

第一组是包含和结束 div 之间的字符串,第二组是结束 div 本身。

于 2013-06-12T17:02:39.757 回答