http://www.perlmonks.org?node_id=177586


in reply to Re: Useful Uses of regex code expressions?
in thread Useful Uses of regex code expressions?

(??{}) is handy in matching nested sets of paren/brackets/etc without crawling through the string C-style, but not a necessity.
  • Comment on Re: Re: Useful Uses of regex code expressions?

Replies are listed 'Best First'.
Re: Re: Re: Useful Uses of regex code expressions?
by jryan (Vicar) on Jun 26, 2002 at 23:43 UTC
    True; but rolling with your flow, regexes themselves aren't really a necessity - only something that happens to be handy for when when you don't feel like crawling through a string C-style.
      Regexes without (??{}) can be used in matching nested sets of paren/brackets/etc when you don't feel like crawling through a string C-style.
        Of an unknown/changing depth of nesting? I'd like to see it done...