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.
正規表現の文字列があります(以下を参照)。適切なパターンをすべて選択しますが、MZで始まるパターンは含めないでください。
パターン -^[A-Z]{2}\d{7}[A-Z]?[A-Z]?$
^[A-Z]{2}\d{7}[A-Z]?[A-Z]?$
先読みアサーションに関するいくつかの投稿を読みましたが、複雑すぎて理解できないのではないかと心配しています。
誰か助けてもらえますか?
パターンで行く
^(?!MZ)[A-Z]{2}\d{7}[A-Z]?[A-Z]?$
ここ(?!...)で、は負の先読みMZです。これにより、文字列の先頭にないことが確認されます。
(?!...)
MZ