最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Using regex to replace only the last occurrence of a pattern with JS - Stack Overflow

programmeradmin1浏览0评论

I have a case where I'm trying to replace a certain pattern with another. My problem is that I need to only replace the last occurrence of that pattern, not all of them. I've found this question:

How to replace last occurrence of characters in a string using javascript

But it doesn't fit my needs. As a background, I will say that I am trying to replace a CSS rule, but for the current example lets look at this text:

abcd:bka:

bbb:aad:

accx:aaa:

bbb:a0d:

cczc:aaa:

lets say I only want to replace the value of bbb. My current rule will be

text.replace(/(\s*bbb:)([^:]+)/,"$1aaa")

but it will only replace the first match, while I want it to replace the last one. My current pattern is actually more plex than this one, but I think the pseudo problem will suffice.

I have a case where I'm trying to replace a certain pattern with another. My problem is that I need to only replace the last occurrence of that pattern, not all of them. I've found this question:

How to replace last occurrence of characters in a string using javascript

But it doesn't fit my needs. As a background, I will say that I am trying to replace a CSS rule, but for the current example lets look at this text:

abcd:bka:

bbb:aad:

accx:aaa:

bbb:a0d:

cczc:aaa:

lets say I only want to replace the value of bbb. My current rule will be

text.replace(/(\s*bbb:)([^:]+)/,"$1aaa")

but it will only replace the first match, while I want it to replace the last one. My current pattern is actually more plex than this one, but I think the pseudo problem will suffice.

Share Improve this question edited May 23, 2017 at 12:33 CommunityBot 11 silver badge asked Jan 20, 2011 at 7:58 AriehGlazerAriehGlazer 2,3209 gold badges27 silver badges31 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

Try

text.replace(/(\s*bbb:)(?![\s\S]*bbb:)[^:]+/,"$1aaa")

The negative lookahead assertion makes sure that there is no further bbb: ahead in the text. The parentheses around [^:]+ are unnecessary.

Explanation:

(?!       # Assert that it is impossible to match the following after the current position:
 [\s\S]*  # any number of characters including newlines
 bbb:     # the literal text bbb:
)         # End of lookahead assertion

The [\s\S] workaround is necessary because JavaScript doesn't have an option to allow the dot to match newlines.

发布评论

评论列表(0)

  1. 暂无评论