regex macth beteen multiple strings code example
Example: regex match several words
# To match the entire line which contains one of foo, man, choo:
^.*(foo|man|choo).*$
# To match the entire line which contains one of foo, man, choo:
^.*(foo|man|choo).*$