【发布时间】:2014-03-25 22:29:32
【问题描述】:
我想要的是替换:
<meta name="description" content="some content here">
到
<meta name="description" content="">
我希望notepad++不会太难。
【问题讨论】:
我想要的是替换:
<meta name="description" content="some content here">
到
<meta name="description" content="">
我希望notepad++不会太难。
【问题讨论】:
你可以这样做:
content="[^"]*" 替换为content=""
见截图
除非您特别希望内容属性仅来自元标记
【讨论】:
在替换对话框中启用“正则表达式” 并尝试搜索:
<meta name="description" content="[A-Za-z0-9].*">
【讨论】: