I can not solve this: I have a text file with some elements, such as "user = ABname". I would like to search for all lines containing a user ID that does not start with "AB" or "ab", and I need to do this with regular exp using Notepad ++ search functionality. I tried using
user = ^[ab]
but actually does not work as expected.
I have to find all of this:
user = CDname1 user = cdname2 user = acname3 user = xbname4
but not
user = abname1 user = ABname2
source share