【goland】正则全局替换

文章目录

  • 1 需求
  • 2 方法
  • 3 缺陷

1 需求

goland ctrl+shift+r全局替换,正则匹配所有以 helper.Response.ResponseFail 开头的行,删去这些行。

2 方法

  • 在 GoLand 中按下Ctrl+Shift+R,弹出全局替换窗口。
  • 在“Find”框中输入正则表达式:helper.Response.ResponseFail.*$
  • 在“Replace”框中输入空格,表示删除匹配的行。
  • 点击“Replace All”按钮,GoLand会自动替换匹配的所有行。

3 缺陷

被替换后,原行变为空行,需做进一步处理。

你可能感兴趣的:(go,go,golang)