我搜索了所有网络,但没有解决我的问题。
我需要一个正则表达式来匹配或替换带有双引号的单词。
例子 :
uniquehereuniqueyouunique"can"uniquegetuniquefoounique"bar"
我需要用某些东西(前不唯一)替换所有独特的“。我试过:
preg_replace("/unique\"/", 'notunique', $contents);
但这不匹配。
感谢您的帮助
我搜索了所有网络,但没有解决我的问题。
我需要一个正则表达式来匹配或替换带有双引号的单词。
例子 :
uniquehereuniqueyouunique"can"uniquegetuniquefoounique"bar"
我需要用某些东西(前不唯一)替换所有独特的“。我试过:
preg_replace("/unique\"/", 'notunique', $contents);
但这不匹配。
感谢您的帮助