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.
echo preg_match( '/\d[A-Z]/', 'CD' ); // Displays “0”
範囲「[AZ]」に一致する文字が明確に存在する場合、どのように0を表示できますか?
それは解析が行われる方法ですか?
正規表現/\d[A-Z]/では、入力には最初に数字が必要であり、次にアルファベットが存在する必要があると記載されています。 入力CDには数字とそれに続くアルファベットが含まれていないため、関数は0 を返します。複数の大文字または数字を照合するには、次の正規表現を使用できます。
/\d[A-Z]/
CD
/[\dA-Z]+/