15
什麼是匹配有圖案的話正則表達式:在正則表達式「列表」
號或資本以任何順序* 3(+可能的「清單」端)
例如,
OP3
G6H
ZZAList
349
127List
都是有效的,而
a3G
P-0List
HYiList
def
YHr
全部無效。
什麼是匹配有圖案的話正則表達式:在正則表達式「列表」
號或資本以任何順序* 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
一個可行的治療,並感謝包括解釋過,正則表達式的開始更有意義現在給我。雖然不是太多...; P – w69rdy 2011-06-09 08:52:50
@ w69rdy閱讀此。 http://www.slideshare.net/andreizm/andreis-regex-clinic – JJS 2015-05-25 12:55:45