Help for this page

Select Code to Download


  1. or download this
    $/ = "=================\n";
    while ( <DATA> ) {
    ...
        next unless $lines[4] =~ /'IC--E'/;
        print "@lines[0, 10]\n";
    }
    
  2. or download this
    $/ = "=================\n";
    while ( <DATA> ) {
    ...
        print "@lines[0, 10]\n"
            if $lines[4] =~ /'IC--E'/;
    }