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