删除 ahref 字符串之间的“示例”

删除 ahref 字符串之间的“示例”

你们能帮助我吗?

我知道存在 ctrl + alt 然后选择但我想使用类似的代码(例如:(<a)“[0-9a-f-]“)*

<a "Testt 22" href="https://test.com" data-href="https://test.com/">

to 

<a href="https://test.com" data-href="https://test.com/">

因为我只是让事情变得简单信息例子

答案1

  • Ctrl+H
  • 找什么:<a \K.*?(?=href=)
  • 用。。。来代替:LEAVE EMPTY
  • 查看 环绕
  • 查看 正则表达式
  • 取消选中 . matches newline
  • Replace all

解释:

<a              # <a and a space
\K              # forget it
.*?             # 0 or more any character, not greedy
(?=href=)       # positive lookahead, make sure we have href= after

截图(之前):

在此处输入图片描述

截图(之后):

在此处输入图片描述

相关内容