次のようにして、文字列に複数の正規表現を適用する必要があります。
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:
何らかの形で単一の正規表現をマージまたは結合する別の方法があるかどうか、またはすでに「正しい方法」で行っているかどうか疑問に思っていましたか?