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.
入力から3つの組み合わせのみを受け入れる正規表現が必要です(数値と文字->1Aまたは数値+数値+文字->15Aまたは数値+数値+数値+文字->115A)
次の正規表現は、1 から 3 の間の数字のグループ\d{1,3}の後に 1 文字の\w{1}を取り、ニーズに一致するようです
(\d{1,3}[a-zA-Z])
#[0-9]+[A-Za-z]{1}# または #[0-9]{1,3}[A-Za-z]{1}# という式を試すことができます