Well, I don't know how to explain that exactly, but I have this text:
abc=0;def=2;abc=1;ghi=4;jkl=2
The thing I want to do is select abc=0
and abc=1
but excluding abc
part...
My regex is: abc=\d+
, but it includes abc
part...
I readed something about this, and the answer was this: (?!abc=)\d+
but It select all the numbers inside the text...
So, can somebody help me with this?
Thanks in advance.