Frank Asked: 2021-03-16 10:44:19 +0800 CST2021-03-16 10:44:19 +0800 CST 2021-03-16 10:44:19 +0800 CST 保留数字并使用正则表达式删除其余行 772 请有人可以帮助我使用以下正则表达式。 我只想保留电话号码并删除其余线路。 Name: Text here DOB: Text here Address: Text here Tel: 1234 567890 我想要什么: 1234 567890 (没有“电话”) regex notepad++ 1 个回答 Voted Best Answer Toto 2021-03-16T11:02:38+08:002021-03-16T11:02:38+08:00 Ctrl+H 找什么:\A.*Tel: ([\d\h]+)|.*? 用。。。来代替:$1 检查 火柴盒 检查 环绕 CHECK 正则表达式 查看 . matches newline Replace all 解释: \A # beginning of file .* # 0 or more any character Tel: # literally ([\d\h]+) # group 1, 1 or more digit or space | # OR .*? # 0 or more any character, not greedy 替代品: $1 # content of group 1, the phone number 截图(之前): 截图(之后):
\A.*Tel: ([\d\h]+)|.*?
$1
. matches newline
解释:
替代品:
截图(之前):
截图(之后):