Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
名前と名前(アルファベット)を1つのスペースだけで囲むテキストフィールドがあります。
私は次のことを試みました、
^ [a-zA-Z] + $
正常に動作していますが、アルファベットのみが必要です。
「PaddyClark」のような名前の間に1つのスペースが欲しい
これを行う方法?
どうですか:
^[a-zA-Z]+ [a-zA-Z]+$