I am not able to solve this: I have text file with some entries like "user = ABname". I would like to search for all the lines containing user id not beginning with "AB" or "ab" and I need to do it with a regular exp using the search functionality of Notepad++. I have tried using
user = ^[ab]
but actually is not working as expected.
I should find all these:
user = CDname1
user = cdname2
user = acname3
user = xbname4
but not
user = abname1
user = ABname2