大写字母和数字的正则表达式模式,可能的“列表”

前端之家收集整理的这篇文章主要介绍了大写字母和数字的正则表达式模式,可能的“列表”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么是正则表达式来匹配具有模式的单词:

数量或资本以任何顺序* 3(可能的“列表”在结尾)

例如,

OP3
G6H
ZZAList
349
127List

都是有效的,而

a3G
P-0List
HYiList
def
YHr

都无效

您可以使用正则表达式:
^[A-Z0-9]{3}(?:List)?$

说明:

^        : Start anchor
[A-Z0-9] : Char class to match any one of the uppercase letter or digit
{3}      : Quantifier for prevIoUs sub-regex 
(?:List) : A literal 'List' enclosed in non-capturing paranthesis
?        : To make the 'List' optional
$       : End anchor

See it

原文链接:https://www.f2er.com/regex/357196.html

猜你在找的正则表达式相关文章