Dreamweaver“查找/替换”的正则表达式需要的

发布于 2024-10-09 00:42:39 字数 247 浏览 3 评论 0原文

我有一些 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

醉生梦死 2024-10-16 00:42:39

查找

id="[^"]*["]

替换为

etc   

勾选使用正则表达式

信息

Find

id="[^"]*["]

Replace with

etc   

Tick on Use regular expression

Info

听你说爱我 2024-10-16 00:42:39

你可以下载emeditor试用版(http://www.emeditor.com/modules/download2/),它的查找/替换支持正则表达式。

You can download emeditor trial(http://www.emeditor.com/modules/download2/), its find/replace support regex.

☆獨立☆ 2024-10-16 00:42:39

如果您专门寻找带有需要删除的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文