Dreamweaver“查找/替换”的正则表达式需要的
我有一些 id 标签需要完全删除,包括它的值。
这可以通过轻松查找/替换来实现吗?或者其他快速方法?
<option name="blabla" id="29482" value="blabla">
我希望上面的内容变成:
option name="blabla" value="blabla">
谢谢
I have some id tags which I need to remove completely, including its value.
Is this possible with an easy find/replace? Or some other fast method?
<option name="blabla" id="29482" value="blabla">
I want the above to become:
option name="blabla" value="blabla">
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查找
替换为
勾选使用正则表达式
信息
Find
Replace with
Tick on Use regular expression
Info
你可以下载emeditor试用版(http://www.emeditor.com/modules/download2/),它的查找/替换支持正则表达式。
You can download emeditor trial(http://www.emeditor.com/modules/download2/), its find/replace support regex.
如果您专门寻找带有需要删除的 ID 属性的 OPTION 标签,Dreamweaver 还提供了按标签名称搜索和删除属性的选项。
CTRL+F 打开“查找”对话框
在搜索列表中,选择“特定标签”,在右侧出现的列表中选择或输入“选项”。
对于这种情况,您可以在搜索列表正下方的列表中保留默认的“内部标记”“正文”,否则选择“内部标记”和“正文”。
在“操作”列表中,选择“删除属性”,然后在右侧显示的列表中输入或选择“id”。
If you are specifically looking for OPTION tags with ID attributes that you need to remove, Dreamweaver also offers the option for searching by tag name and removing attributes.
CTRL+F to open the Find dialog
In the Search list, select "Specific tag", select or enter "option" in list that appears to the right.
For this case you can probably leave the default of "Inside tag" "body" on the list immediately below the Search list, otherwise select "Inside tag" and "body".
In the "Action" list, select "Remove attribute", then enter or select "id" in the list that appears to the right.