How can I create a regex expression that will match only letters and numbers, and one space between each word?
Good Examples:
^[a-zA-Z]+([\s][a-zA-Z]+)*$