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 need a regular expression to find any words containing the letter "y".

This was my idea:

/w*[y]w*/

a word boundary, something or nothing, y, something or nothing, word boundary.
It works for the first word, but not for the next one.

How do I get all the words containing a y within a string?

See Question&Answers more detail:os

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

1 Answer

Not knowing what language you're using and guessing based on the syntax of your attempt, this should work:

/w*[Yy]w*/g

Without the "g" (for "global") option you'll only get the first match. Note also this matches on "y" in both upper and lower case.


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