I am trying to find two separate groups of text within a document using REGEX in an application. Example:
(facility services|MAFS|MFA|facility|facilities)
(agreement|lease)
I only want to identify documents that have a match to one word in both sets of text, such as facility
and agreement
. How would I write that in REGEX?