regular expression to match two words with a space
\w+\s\w+
At least one word character, then a space (or tab, or what have you), then at least another word character.
Here's what it looks like:
\w+\s\w+
At least one word character, then a space (or tab, or what have you), then at least another word character.
Here's what it looks like: