在正则表达式搜索中全部替换

在正则表达式搜索中全部替换

我不太擅长使用正则表达式,但我正尝试在条件正则表达式搜索中运行“全部替换”。

在我的正则表达式搜索 (results(.*)continue) 中,我试图在包含单词“results”的行中查找单词“continue”。是否有任何可以替换“continue”的只是除了手动更改之外,还有其他方法可以更改这些搜索结果吗?

例子:

Results(.*)Continue
This sentence contains the word continue.
Results 2(.*)Continue

Results(.*)End
This sentence contains the word continue.
Results 2(.*)End

谢谢。

答案1

不确定这是否最有效,但请尝试以下方法:

  • 找什么:(?<=Results)(.+)Continue
  • 用。。。来代替:\1End
  • 搜索模式:Regular expression

相关内容