Help for this page

Select Code to Download


  1. or download this
    use strict;
    #use warnings;
    
  2. or download this
    use strict;
    use warnings;
    
  3. or download this
    while (<COMPFILE>) {
        $comptn = substr $_, 0,10;
    ...
    
    
    sub search_tn {
    
  4. or download this
    while (<COMPFILE>) {
        search_tn( substr $_, 0, 10 );
    ...
    
    sub search_tn {
        my $comptn = shift;
    
  5. or download this
            next until $. > 1;
    
  6. or download this
            next if $. == 1;
    
  7. or download this
            if ($record[0] eq "TLR") {
            } else {
    
  8. or download this
            next if $record[0] eq "TLR";
    
  9. or download this
                    if ($error == "") {
    
  10. or download this
                    if ($error eq "") {