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 [email protected] and I love programming
my email is [email protected] and I love programming
my email is [email protected] and I love programming
my email is [email protected] 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?