RegEx exclude string without negative lookahead lookbehind

Viewed 18

Google doesn't support negative lookahead. So the regexes

name|(?!nodeName) OR

@|(?!@abc.com) failed.

I'm trying to figure out how it could work, that I get entries with
name= but not with nodeName= or @ but not @abc.com.

0 Answers
Related