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.
我是正则表达式的新手。我需要一个正则表达式来验证 [1-5] 范围内的单个数字,然后是字母 [AC],然后是可选的字母 [XZ]
使用在线测试人员对其进行验证:
[1-5]+[A-C]+[X-Z]*
正则表达式
斯金纳
你尝试的是正确的,除了你缺少开始和结束字符,所以它在部分匹配上是成功的。
你需要:
^[1-5][a-cA-C][x-zX-Z]?$