in reply to regex : finding the location multiple clustered (in parenthesis) groups

See @- in perlvar.(Updated link)

  • Comment on Re: regex : finding the location multiple clustered (in parenthesis) groups
  • Download Code

Replies are listed 'Best First'.
Re^2: regex : finding the location multiple clustered (in parenthesis) groups
by wol (Hermit) on Aug 02, 2010 at 11:46 UTC
    The link above goes to documentation for an older version of perl. This one should be up-to-date enough to include @-

    perlvar

    --
    use JAPH;
    print JAPH::asString();

Re^2: regex : finding the location multiple clustered (in parenthesis) groups
by yonatan (Novice) on Aug 02, 2010 at 12:19 UTC

    thank you. this is exactly what i needed.

    your link is outdated (applies to perl 5.6), thus lacking the definition of @- .

    i attach an updated link to perlvar documentation which holds your intended contents.