i want to invert a regular expression, i want to match all strings which doesnt have a special email username in them. like:
my email is myriam@example.com and I love programming
my email is myriam@yahoo.com and I love programming
my email is myriam@google.com and I love programming
my email is myriam@gmail.com and I love programming
all shouldn't be matched.
if i want to match them i use /myriam@.*[\.].*/
. a friend told me that if i want to invert it, i must use ?!
, but i can't find out how?