正则表达式的否定?

发布于 2024-10-17 22:47:10 字数 326 浏览 1 评论 0原文

我有这样的字符串,

​String str = "<img src='earth'> ddd earth ggg earth. fff "

我想用“world”替换所有“earth”,除了 img src 中的字符串。 也就是说,我想获取字符串

<img src='earth'> ddd world ggg world. fff

,可能我需要一个智能正则表达式来检测该单词是否在 src 中,但找不到方法来做到这一点。或者可能是否定可能有帮助。

感谢您的帮助。

I have such string

​String str = "<img src='earth'> ddd earth ggg earth. fff "

I want to replace all 'earth' by 'world' except the one in img's src.
Namely I want to get the string

<img src='earth'> ddd world ggg world. fff

Probably I need an intelligent regex to detect if the word is in src but could not find a way to do it. Or may be negation may help.

Thanks for your help.

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

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

发布评论

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

评论(1

凉墨 2024-10-24 22:47:10

如果字符串格式良好,则可以使用负向后查找。

s/(?<!src=')earth/world/

(? 构造称为负向后查找,只要其内容不存在就匹配。

If the string is well-formed you could use a negative look-behind.

s/(?<!src=')earth/world/

The (?<!...) construct is called a negative look-behind and matches as long as its content is not there.

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