Hi,
can somebody help me to solve my regex mistake.
I have the following string (and more like that):
NAME=……,
Know I want to extract the part between = and ,
in the party between = and , can be any character (but no = or ,)
I have tried something like that (I know its terrible):
[^=]*[^,]
[^=^,]*
Thx.
↧