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

时间:2011-06-09 08:41:52

标签: regex numbers capitalization

匹配具有该模式的单词的正则表达式是什么:

任何订单中的数字或资本* 3(最后可能是'列表')

例如,

OP3
G6H
ZZAList
349
127List

都有效,而

a3G
P-0List
HYiList
def
YHr

都无效。

1 个答案:

答案 0 :(得分:44)

您可以使用正则表达式:

^[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