如果不是以" @"开头,我需要替换单词中的replaceString
。
例如:
replaceString - replaced to : replacedString
abc.replaceString - replaced to : abc.replacedString
abc.@replaceString - NOT replaced
我尝试使用类似@"(?!@)replaceString$"
的内容,但效果不正常。
答案 0 :(得分:3)
使用lookbehind而不是lookahead:
(?<!@)replaceString$