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.
我需要正则表达式进行验证,它只接受来自输入的三种组合(数字和字母 - > 1A 或数字 + 数字 + 字母 -> 15A 或数字 + 数字 + 数字 + 字母 -> 115A)
以下正则表达式采用一组介于 1 和 3 \d{1,3}之间的数字,后跟一个字母\w{1},似乎符合您的需要
(\d{1,3}[a-zA-Z])
您可以尝试这样的表达式 #[0-9]+[A-Za-z]{1}# 或 #[0-9]{1,3}[A-Za-z]{1}#