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正規表現は何ですか. しかし、スペースは最初の単語の後にのみですか?
ありがとうございました
$rex = '/^[a-zA-Z][a-zA-Z ]*$/';
または
$rex = '/^[a-z][a-z ]*$/i'; // i means case insensitive