记事本++正则表达式搜索替换html标记

时间:2014-02-24 10:15:45

标签: regex replace notepad++

我想要的是取代:

<meta name="description" content="some content here"> 

<meta name="description" content="">

我希望记事本++不难。

2 个答案:

答案 0 :(得分:2)

您可以这样做:

  1. content="[^"]*"替换为content=""
  2. 查看屏幕截图enter image description here

    除非您特别希望内容属性仅来自元标记

答案 1 :(得分:1)

在替换对话框中启用“正则表达式” 并尝试搜索:

<meta name="description" content="[A-Za-z0-9].*">