Sublime:替换引号之间的所有内容
Sublime: replace everything between quotes
我需要一些有关在 Sublime 中搜索和替换正则表达式的帮助来执行以下操作。
我有带链接的 HTML 代码
href="http://www.example.com/test=123"
href="http://www.example.com/test=6546"
href="http://www.example.com/test=3214"
我想用空链接替换它们:
href=""
href=""
href=""
请帮我创建一个Reg。前任。过滤以匹配我的情况。我想这听起来像 "starts with Quote, following with http:// .... ends with Quote and has digitals and '=' sign",但我不太确定如何在 Reg 中编写它。前任。方式。
(?<=href=")[^"]*
通过 empty string
尝试 this.Replace。
查看演示。
我需要一些有关在 Sublime 中搜索和替换正则表达式的帮助来执行以下操作。
我有带链接的 HTML 代码
href="http://www.example.com/test=123"
href="http://www.example.com/test=6546"
href="http://www.example.com/test=3214"
我想用空链接替换它们:
href=""
href=""
href=""
请帮我创建一个Reg。前任。过滤以匹配我的情况。我想这听起来像 "starts with Quote, following with http:// .... ends with Quote and has digitals and '=' sign",但我不太确定如何在 Reg 中编写它。前任。方式。
(?<=href=")[^"]*
通过 empty string
尝试 this.Replace。
查看演示。