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.
正则表达式的初学者:我想要一个长度为 5 的字母数字字符串的正则表达式
其中只能包含大写字母或数字
有效字符串FCKGW A32FD 1CF2G等
编辑以添加使用的解决方案: re.match(r'[A-Z0-9]{5}',str)
一个有效的正则表达式,它只允许以下字符:AZ(大写)和 0-9,将是:
^[A-Z0-9]{5}$
如果您也想允许小写字符,则正则表达式将是:
^[A-Za-z0-9]{5}$