Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        /^\s*\[([^]]+)\]/ and push @left, $1;
    ...
    }
    print "Left  : $_\n" for @left;
    print "Right : $_\n" for @right;