Help for this page

Select Code to Download


  1. or download this
    while (<INFILE>) {
        my $line = $_;
    
  2. or download this
    while (my $line = <INFILE>) {
    
  3. or download this
    $juris1 = substr( $line, 99, 1 );
    $juris2 = substr( $line, 148, 1 );
    ...
    #
    #substr( $line, 99, 1, '9' ); # 4th argument replaces
    #substr( $line, 148, 1, 'Z' );# selected sub-string