How can I make regular expression to match if any of the substrings is at any point of the string?
I mean if I define substrings "one" and "two" these are a match:
- One
- Two
- Blah one blah
- foo bar two baz.
So it also needs to be case insensitive. I need this in auto reply app on Android so I can only use one regular expression.