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で正規表現を使用して、文字az、AZ、数字0〜9、および特殊文字$!。のみを承認する方法を教えてください。
preg_match("/^[a-zA-Z0-9$!\.\,]{1,100}$/", $name);
ここで何が問題になりますか?
頭のてっぺんから
if (preg_match('/^[^a-z\d\$!\.,]$/i', $string)){ // fail }