我需要一个匹配以下内容的正则表达式:
"United States" // match
"United States" // not match
"united States" // not match
"United states" // not match
" United States" // not match
"United States " // not match
例如,它将要求每个单词都以大写字母开头,并且单词之间只有一个空格。它还必须拒绝任何尾随或前导的空白字符。
谢谢