Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm playing around with the pattern attribute in html5. It accepts a regular expression in order to deem a form-field valid or invalid.

I want a field to be valid if it contains the word John and nothing else. How do I do this with regular expression?

share|improve this question
why regular expression? – madfriend Jul 20 '12 at 20:01
My suggestion: don't use regular expressions for this. This sort of thing can be handled with a basic == check. – Palladium Jul 20 '12 at 20:02
@Palladium You can get in a lot of trouble comparing strings with ==. – David B Jul 20 '12 at 20:19
@Palladium I strongly disagree in this case. Obviously, the webb is not mature enough for html form validtion, but when it is, you get rid of a lot of complexity and code by using the pattern attribute rather than javascript. – Kristoffer Nolgren Jul 20 '12 at 21:04
But on the other hand, "using regular expression to look for exact phrase" is an oxymoron. The point of regular expressions is that it can find variable matches - and it's orders of magnitudes slower than bare comparison because of it. Furthermore, the pattern attribute isn't supported on all major browsers, and even then, it's always a better idea to validate the input using JS or PHP afterwards (in which case, you should definitely use comparison rather than regex). – Palladium Jul 20 '12 at 21:08

1 Answer

up vote 5 down vote accepted

Should be something like this:

pattern="^John$"

Edit: Actually, it looks like ^ and $ are implied, so this would be sufficient:

pattern="John"

As pointed out by Tim Pietzcker, to specify a case insensitive match, you would use the following:

pattern="(?i)john"
share|improve this answer
Fancy. Updated. – Sean Bright Jul 20 '12 at 20:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.