So I want to find all of the parts of the string that don't aren't in the regex.
Let's say I have a regex r'foo|bar'
and string 'Hello foo how are you bar'
, how can I get every word other than what the regex matches so it returns ['Hello', 'how', 'are', 'you']
?