3

我在这里要做的是获取一个可能包含通常是代码注释的字符串,并将其替换为其他内容,尤其是将其包装在其他内容中。我很确定这个preg_replace功能在这里可以工作,但我不知道从哪里开始使用正则表达式。例如:

Hello world //this is a comment
Testing //not testing
Test again

会变成

Hello world %//this is a comment%
Testing %//not testing%
Test again

preg_replace('???', '%$1%', $matches);尽我所能,任何帮助都非常感谢!

4

2 回答 2

4
preg_replace('~//.*$~m', '', $str);

这将删除(包括)//到行尾的所有内容

http://ideone.com/Xhmpd

preg_replace('~//.*$~m', 'foo \\0 bar', $str);

这将把它们包裹foo bar起来

http://ideone.com/IqkWM

于 2012-09-04T23:33:05.550 回答
1

尝试这个:

$string = "Hello world //this is a comment";
preg_replace('/\/\/.*/', '%$0%', $string);
于 2012-09-04T23:35:48.323 回答