Help for this page

Select Code to Download


  1. or download this
    my @array = do {
        local $/ = ('*' x 66) . "\n";
    ...
        chomp @tmp;
        @tmp;
    };
    
  2. or download this
    substr $_, 0, 2 + length("\n") + index($_, "--\n"), ''
        for @array;