Is there any regex like this:
"/Hello my name is [ANYTHING THAT IS NOT "john"], and I like pizza/"
So when I match with this regex, it should return true as long as the place where the name is is not "john".
"Heloo my name is abcd, and I like pizza" --> false
"Hello my name is asdf, and I like pizza" --> true
"Hello my name is john, and I like pizza" --> false
What should my regex look like to do this in the best way?