如何使用正则表达式在 Notepad++ 中进行转换?

如何使用正则表达式在 Notepad++ 中进行转换?

如何轉換«Ctrl+(any letter)» Any words«Ctrl+(any letter)» — Any words

例如。我需要这样的:

«Ctrl+T» Free transform
«Ctrl+D» Deselect selections
etc.

转换成:

«Ctrl+T» — Free transform
«Ctrl+D» — Deselect selections
etc.

答案1

  • 找什么:(«Ctrl\+.»\s)
  • 用。。。来代替:$1-
  • 搜索模式:Regular expression

答案2

最简单的方法是搜索

» 

并将其替换为

» — 

PS两个字符串末尾都有空格 ( )

相关内容