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?
==check. – Palladium Jul 20 '12 at 20:02==. – David B Jul 20 '12 at 20:19patternattribute 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