regex help needed
So i need to write 2 regexes, one needs to match the following:
somedomain.com where somedomain can be any length
another regex that matches the following:
someword-international.com or something-intl.com
the regexes must be mutually exclusive.
the problem i am having is that if i write
[^int].*?\\.com
as the first regex, then it wants to have atleast 3 letters which arent "int" so i cant have aa.com match correctly for the first regex

