用regexp替换部分单词

时间:2015-06-18 08:43:25

标签: c# asp.net regex regex-negation

如果不是以" @"开头,我需要替换单词中的replaceString

例如:

replaceString - replaced to : replacedString
abc.replaceString - replaced to : abc.replacedString
abc.@replaceString - NOT replaced

我尝试使用类似@"(?!@)replaceString$"的内容,但效果不正常。

1 个答案:

答案 0 :(得分:3)

使用lookbehind而不是lookahead:

(?<!@)replaceString$