用正则表达式替换部分单词

Replace part of word with regexp

我需要替换 replaceString 里面的单词,如果它不是以“@”开头的话。

例如:

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

我正在尝试使用类似 @"(?!@)replaceString$" 的东西,但它无法正常工作。

使用后瞻而不是前瞻:

(?<!@)replaceString$