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

Categories

0 votes
611 views
in Technique[技术] by (71.8m points)

regex - Need to find a regular expression for any word except word1 or word2

Basically I need a regex which will return true if the string is a word (w+) EXCEPT if it is the word word1 OR word2.

I've tried many things but dont think I'm even close. Help!

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)
^(?!(?:word1|word2)$)w+$

should do what you need.

(?!...) is a negative lookahead assertion that ensures that it is not possible to match the enclosed expression at the current position.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...