notepad ++ regex删除标签和内容

时间:2015-07-16 11:20:07

标签: regex notepad++

<description><![CDATA[<span style="font-weight: bold;">..text content...</span></description>

我想删除所有描述数据

输出:<description></description>

我该如何删除

1 个答案:

答案 0 :(得分:0)

查找并替换:

找到:(<description>)(.+?)(<\/description>)

替换为:\1\3

搜索模式:正则表达式