I am trying to validate a small text question with a regex like the following
^.*\b(one|two|three)\b.*$
The answer is validated correctly, eg. if "one" is written as answer the text field is white and not red, however I cannot continue to the next question group, when I click next, no error messages are shown.
Any ideas to what could be the problem?
What I essentially want to do is have people enter a code that has been handed to them on paper. When entered it should then be validated against a list of codes.
If there is a better way to do this I'm open for solutions..