3

次のようにして、文字列に複数の正規表現を適用する必要があります。

regex = re.compile("...")
regex2 = re.compile("...")
regex3 = re.compile("...")
regex4 = re.compile("...")
if regex.match(string) == None and regex2.match(string) == None and regex3.match(string) == None and regex4.match(string) == None:

何らかの形で単一の正規表現をマージまたは結合する別の方法があるかどうか、またはすでに「正しい方法」で行っているかどうか疑問に思っていましたか?

4

1 に答える 1

3
r_list = [re.compile("..."),
          re.compile("..."),
          re.compile("..."), 
          re.compile("...")]
if any(r.match(string) for r in r_list):
    # if at least one of the regex's matches do smth
于 2012-12-31T11:28:22.560 に答える