in reply to RE: RE: (tye)Re: Regular expression to match an A=B type string needs help in storing matched parts of string
in thread Regular expression to match an A=B type string needs help in storing matched parts of string

In the regex /[^=]+=/, the [^=] part matches NON-= characters. The = then matches an = sign after the non-= characters. That's basically all I can think to say...

$_="goto+F.print+chop;\n=yhpaj";F1:eval
  • Comment on RE: RE: RE: (tye)Re: Regular expression to match an A=B type string needs help in storing matched parts of string