1

I would like regex to match if and only if the string is none, family or work (but not my family, for example).

Why the following code results with "match" ? Why ^ and $ do not work ?

var regex = new RegExp("^none|family|work$");
var str = "my family";
document.write(regex.test(str) ? "match" : "no");

2 Answers 2

4

The | operator has low precedence, so you effectively have (^none)|(family)|(work$), which matches anything beginning with none, containing family or ending with work.

Use this instead:

^(none|family|work)$
Sign up to request clarification or add additional context in comments.

Comments

4

Your regex matches either:

  • “none” at the beginning of the string;
  • “family” anywhere in the string; or
  • “work” at the end of the string.

What you probably want instead is

var regex = new RegExp("^(none|family|work)$");

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.