When I need to search for either "regulatory" or "regulatories" I use
\bregulatory\b|\bregulatories\b
Is there any way I could create a Regex considering the word beginning as same and just consider the different ends "y" OR "ies" but not any other. I mean, I could use:
\bregulator.{0,3}\b
but it could mismatch 'regulatorial'.
So, I am looking for something like that: \bregulator.{y OR ies}\b (it doesn't exist in Regex and it is exactly how to translate it to regex what I am looking for).