I am trying to formulate a regex expression (running in Python) that gets passed a word and needs to only find words that do not contain 2 adjacent vowels. For Example:
me - would match
mee - would not match
meat - would not match
base - would match
basketball - would match
I am lost here as I do not know how to check for something that does not exist?
Thanks for the help