我有这样的台词:
whatisthis||
whatisth|searchfor
whatisth||
whatist|searchfor
what|
what||
我想自动删除这些:
whatis||
和
what|
使用记事本++上的正则表达式,我该怎么办? 所有想要的行都有两个参数:
whatist|searchfor
我只想要这样的一行:
EXAMPLE|EXAMPLE
谢谢。
答案 0 :(得分:0)
您可以使用行尾锚$
search: .*\|(\r?\n|$)
replace: nothing
或更好:
search: (\r?\n|^).*\|$
replace: nothing