标签: regex notepad++
我需要找到并保留<strong>string I want to keep</strong>标记之间的所有字符串并删除所有其他文字(包括<strong></strong>)
<strong>string I want to keep</strong>
<strong></strong>
是否可以在Notepad ++中执行此操作,请提供建议。
答案 0 :(得分:0)
查找
.*?<strong>(.*?)</strong>.*?
替换为:
\1
注意您应该选中. matches newline复选框。
. matches newline
结果:
如果您想要关注结果,请使用\1\n:
\1\n