show/hide this revision's text 3 re.match -> re.search

You don't need a regex to find whether a string contains at least one of a given list of substrings. In Python:

def contain(string_, substrings):
    return any(s in string_ for s in substrings)

The above is slow for a large string_ and many substrings. GNU fgrep can efficiently search for multiple patterns at the same time.

Using regex

import re

def contain(string_, substrings):
    regex = '|'.join("(?:%s)" % re.escape(s) for s in substrings)
    return re.match(regexre.search(regex, string_) is not None

Related

show/hide this revision's text 2 added regex version; mentioned fgrep, MSMPMA

You don't need a regex to find whether a string contains at least one of a given list of substrings. In Python:

def contain(string_, substrings):
    return any(s in string_ for s in substrings)

The above is slow for a large string_ and many substrings. GNU fgrep can efficiently search for multiple patterns at the same time.

Using regex

import re

def contain(string_, substrings):
    regex = '|'.join("(?:%s)" % re.escape(s) for s in substrings)
    return re.match(regex, string_) is not None

Related

show/hide this revision's text 1

You don't need a regex to find whether a string contains at least one of a given list of substrings. In Python:

def contain(string_, substrings):
    return any(s in string_ for s in substrings)