简体   繁体   中英

Match a line with multiple regex using Python

Is there a way to see if a line contains words that matches a set of regex pattern? If I have [regex1, regex2, regex3] , and I want to see if a line matches any of those, how would I do this? Right now, I am using re.findall(regex1, line) , but it only matches 1 regex at a time.

You can use the built in functions any (or all if all regexes have to match) and a Generator expression to cicle through all the regex-objects.

any (regex.match(line) for regex in [regex1, regex2, regex3])

(or any(re.match(regex_str, line) for regex in [regex_str1, regex_str2, regex_str2]) if the regexes are not pre-compiled regex objects, of course)

Although that will be ineficient compared to combining your regexes in a single expression - if this code is time or cpu critical, you should try instead, composing a single regular expression that encompass all your needs, using the special | regex operator to separate the original expressions. A simple way to combine all the regexs is to use the string "join" operator:

re.match("|".join([regex_str1, regex_str2, regex_str2]) , line)

Although combining the regexes on this form can result in wrong expressions if the original ones already do make use of the | operator.

Try this new regex: (regex1)|(regex2)|(regex3). This will match a line with any of the 3 regexs in it.

You cou loop through the regex items and do a search.

regexList = [regex1, regex2, regex3]

line = 'line of data'
gotMatch = False
for regex in regexList:
    s = re.search(regex,line)
    if s:
         gotMatch = True
         break

if gotMatch:
    doSomething()
#quite new to python but had the same problem. made this to find all with multiple 
#regular #expressions.

    regex1 = r"your regex here"
    regex2 = r"your regex here"     
    regex3 = r"your regex here"
    regexList = [regex1, regex1, regex3]

    for x in regexList:
    if re.findall(x, your string):
        some_list = re.findall(x, your string)     
        for y in some_list:
            found_regex_list.append(y)#make a list to add them to.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM