如何“查找并替换”使用 ATOM 的 TAGS 中的特定字符?
我需要帮助仅替换我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个正则表达式字符串,它将找到 alt= + 一个由连字符连接的字符串
,这是一个查找 alt= + 一个由空格连接的字符串
交给您,看看如何在原子编辑器中使用它们。
注意,我已经做到了,以便它可以找到 '' 或 "" 作为字符串分隔符。如果您在脚本中使用这些字符,您可能会遇到问题。
Here is a regex string which will find alt= + a string joined by hyphens
and here is one the find alt= + a string joined by spaces
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.