Can regex (with javascript possibly) be used to mandate numbers, followed by a space, and then letters?
I'm a bit lost on where to start with this...
I understand that using an HTML5 pattern would work for this...
[0-9]+[ ][a-zA-Z0-9]+
However, I am looking for the equivalent in regex without using HTML5 patterns.