RegEx to match if the string contains 1 or more sets of 1-10 alphanumerics (separated by 1 space)
Right now i have this and that will match the alphanumeric part.
var regex = /^[0-9a-zA-Zs]+$/;
After it matches i plan to just use
var matches = thetext.Split(' ');
to get the various matches.
Thanks in advance