Help for this page

Select Code to Download


  1. or download this
    while ( my $line = <DATA> ) {
        my ( $second, $sixth ) = ( split //, $line )[1,5];
        print $second, $sixth, "\n";
    }