Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    (hh)
    jj
    kk
    
  2. or download this
    my $re = qr{ \( (?: (?> [^()]+ ) | (??{ $re }))* \) }x;
    
  3. or download this
    no strict 'vars';
    $rec_re = qr{ \( (?: (?> [^()]+ ) | (??{ $rec_re }))* \) }x;
    my $re = $rec_re;
    use strict;