我需要对字符串应用多个正则表达式,我这样做:
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:
我想知道是否有另一种方式以某种方式合并或组合单个正则表达式,或者我是否已经以“正确的方式”进行了操作?
答案 0 :(得分: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