我搜索了所有网络,但没有解决我的问题。
我需要一个正则表达式来匹配或替换一个带有双引号的单词。
示例:
uniquehereuniqueyouunique “罐” uniquegetuniquefoounique “栏中的”
我需要替换所有独特的“by something(ex notunique)。我试过:
preg_replace(“/ unique \”/“,'notunique',$ contents);
但是那不匹配。
感谢您的帮助
答案 0 :(得分:0)
我找到了它!
preg_replace('/unique."/', 'notunique', $contents);