我需要从文本中删除所有“'s”,除了单词“let's”。
例如:“jerry's let's cake's”>>“jerry let's cake”。
strText = Regex.Replace(strText, @"\b(?!let's)([a-z-]+)'s\b", @"$1");
- 这行得通,但在大文本上需要很长时间。
strText = Regex.Replace(strText, @"\b(?!let's)(?<=[a-z-]+)'s\b", "");
- 这个并没有忽略“让我们”
我在第二个陈述中做错了什么?