I have /^\w+( \w+)*$/
It tests for one space between words, and no leading or trailing spaces.
However, it fails on an edge case where it is passed just the blank string "
I have tried:
/^\w"+( \w+)*$/
/^\w\"+( \w+)*$/
/^\w|"+( \w+)*$/
but then it fails my other tests.
Any thoughts are appreciated! Thanks!