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.
PHPでpreg_matchを使用して文字とスペースをチェックする便利な方法を探しています。
したがって、「オランダ」または「デンマーク」のみを追加できます。
前もって感謝します!
preg_match('/^[a-zA-Z\s]+$/', $string);
^と$は、それぞれ、文字列の最初と最後を意味し、a-z小文字、A-Z大文字、\s空白、+1回以上を意味します。
^
$
a-z
A-Z
\s
+