0

我搜索了所有网络,但没有解决我的问题。

我需要一个正则表达式来匹配或替换带有双引号的单词。

例子 :

uniquehereuniqueyouunique"can"uniquegetuniquefoounique"bar"

我需要用某些东西(前不唯一)替换所有独特的“。我试过:

preg_replace("/unique\"/", 'notunique', $contents);

但这不匹配。

感谢您的帮助

4

1 回答 1

0

我找到了 !

preg_replace('/unique."/', 'notunique', $contents);
于 2013-10-09T17:05:09.663 回答