Help for this page

Select Code to Download


  1. or download this
        while (<>) {
            chomp;
            next if (/(H|IF)-000$/ or !/^PH/);
            print "$_\n";
        }
    
  2. or download this
            next if (/[HI]-000$/ or !/^PH/);