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.
次のパターンの正規表現を見つけたい:"AA XXXXXXX"(2文字、1スペース、7桁)。
"AA XXXXXXX"
例:"AA 1234567"。
"AA 1234567"
今、私は答えを見つけることができません。
必要なパターンは次のとおりです。
[a-zA-Z]{2} [0-9]{7}
正確に2文字(大文字または小文字)、スペース、正確に7桁。
サンプル文字列のように文字を大文字にすることしかできない場合:
[A-Z]{2} [0-9]{7}
Javaの場合:
Pattern p = Pattern.compile("[A-Z]{2} [0-9]{7}"); Matcher m = p.matcher("AA 1234567"); boolean b = m.matches();