Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to find the word immediately after a particular word in a string using a regex. For example, if the word is 'my',

"This is my prayer"- prayer

"this is my book()"- book

Is it possible using regex?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
580 views
Welcome To Ask or Share your Answers For Others

1 Answer

The regex would be

(?<=mys+)p{L}+

p{L}+ is a sequence of letters. The p{L} is a Unicode code point with the property "Letter", so it matches a letter in any language.

(?<=mys+) is a lookbehind assertion, that ensures thet word "my" is before


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...