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.
一些在正则表达式上混淆以验证以下格式的字母数字字段:
XX77777(最大字符数必须为 7)
前两个字符必须是字母 (AZ)
试试这个正则表达式:
[A-Z]{2}\d{0,5}
我想知道你的困惑可能来自哪里。这是一个非常基础的,你应该通过一个正则表达式参考(比如这个),这将花费你 10 分钟。