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.
嗨,我想要一个只允许一个字母的正则表达式(可以是大写或小写的 AZ 中的任何一个,然后是(1-9)之间的一个数字
正确的值是
T5 e3 k8 Z2
不正确的值是
Aa1 12 aa rr 4r 1w
谢谢。
你应该在问这个问题快速教程之前探索正则表达式
顺便说一下,这个正则表达式适合你
^[a-zA-Z][1-9]$
^用于字符串的开头
^
$对于字符串的结尾
$
您可以根据需要使用
尝试使用这个正则表达式\b[a-zA-Z][1-9]\b
\b[a-zA-Z][1-9]\b