Help for this page

Select Code to Download


  1. or download this
    my $string;
    {
    ...
        $string = <FILE>;
    }
    my @stuff = split '%', $string;
    
  2. or download this
    my $string;
    {
    ...
    
    $string =~ s/$///g;
    my @stuff = split /%+/, $string;