如何“查找并替换”使用 ATOM 的 TAGS 中的特定字符?

发布于 2025-01-11 13:34:14 字数 584 浏览 0 评论 0原文

我需要帮助仅替换我的 alt 标签内的 - (而不是代码/html 的其余部分)。

不好:alt="允许滚筒烘干"

好:alt="允许滚筒烘干"

我正在使用 ATOM,而 REGEXP 教程对我来说很陌生。 (看起来很奇怪)

任何帮助将不胜感激。

<td data-colname="File"><strong><img title="Tumble-drying-allowed"
src="wp-content/uploads/2022/01/Tumble-drying-allowed.svg"
alt="Tumble-drying-allowed" width="31.18" height="31.48" />Tumble-drying-allowed</strong>
File name:Tumble-drying-allowed.svg</td>

最终我也会定位 title 标签,但我需要一个良好的开端

I need help replace the - inside my alt tags only (not the rest of the code/html).

bad: alt="Tumble-drying-allowed"

good: alt="Tumble drying allowed"

I'm using ATOM and the REGEXP tutorials are foreign to me. (so weird to look at)

Any help would be greatly appreciated.

<td data-colname="File"><strong><img title="Tumble-drying-allowed"
src="wp-content/uploads/2022/01/Tumble-drying-allowed.svg"
alt="Tumble-drying-allowed" width="31.18" height="31.48" />Tumble-drying-allowed</strong>
File name:Tumble-drying-allowed.svg</td>

Eventually I'll target the title tag too, but I need a head start

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

亚希 2025-01-18 13:34:14

这是一个正则表达式字符串,它将找到 alt= + 一个由连字符连接的字符串

alt=['"]{1}([A-Za-z]*[\-]{1})*[A-Za-z]*["']{1}

,这是一个查找 alt= + 一个由空格连接的字符串

alt=['"]{1}([A-Za-z]*[ ]{1})*[A-Za-z]*["']{1}

交给您,看看如何在原子编辑器中使用它们。
注意,我已经做到了,以便它可以找到 '' 或 "" 作为字符串分隔符。如果您在脚本中使用这些字符,您可能会遇到问题。

Here is a regex string which will find alt= + a string joined by hyphens

alt=['"]{1}([A-Za-z]*[\-]{1})*[A-Za-z]*["']{1}

and here is one the find alt= + a string joined by spaces

alt=['"]{1}([A-Za-z]*[ ]{1})*[A-Za-z]*["']{1}

Over to you to see how you use them in atom-editor.
NB I've made it so that it will find '' or "" as string delimiter. Your might have a problem with these characters if you use it in a script.

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