Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在记事本++中使用唯一名称搜索和替换 name="" 属性?我只是想删除整个 name="" 属性。
notepad++ 中有什么方法可以用正则表达式来做到这一点吗?
name 属性如下所示:
name="myTag1"
1唯一标识在哪里。
1
谢谢!
使用此正则表达式的替换功能
name="myTag[0-9]+"
不要忘记regular expression选中替换功能对话框中的复选框。
regular expression