Help for this page

Select Code to Download


  1. or download this
    I have some <brackets in <nested brackets> > and
    <another group <nested once <nested twice> > >
    and that's it.
    
  2. or download this
    #!/usr/local/bin/perl5.10.0
    
    ...
    
    $" = "\n\t";
    print "Found:\n\t@groups\n";
    
  3. or download this
    Found:
        <brackets in <nested brackets> >
        <another group <nested once <nested twice> > >
    
  4. or download this
    #!/usr/local/bin/perl5.10.0
        
    ...
        
        unshift @queue, map { s/^<//; s/>$//; $_ } @groups;
        }
    
  5. or download this
    Found:
        <brackets in <nested brackets> >
    ...
    
    Found:
        <nested twice>