Notepad++ 拆分函数正则表达式

Notepad++ 拆分函数正则表达式

我是 notepad++ 的新手。我想在 后拆分关键字@

[email protected]
[email protected]
[email protected]

我的期望输出:

yahoo.com
gmail.com
outlook.com

答案1

  • Ctrl+H
  • 找什么:.+@
  • 用。。。来代替:LEAVE EMPTY
  • 查看 环绕
  • 查看 正则表达式
  • 取消选中 . matches newline
  • Replace all

解释:

.+      # 1 or more any character but newline
@       # @

截图(之前):

在此处输入图片描述

截图(之后):

在此处输入图片描述

相关内容