Help for this page

Select Code to Download


  1. or download this
    my @output;
    foreach my $line (@lines) {
    ...
        $split[0] =~ s/\.//g #remove the dots from the element
        push @output, $split[0] . ' ' . $split[3];
    }