Help for this page

Select Code to Download


  1. or download this
    <font size="-2" face=verdana> <b>Catalog Number:</b>&nbsp;
    
    ...
    <c>
    $results=~ /(Catalog Number:)/;
    if($1) {print "$1\n";} else {print "nothing\n";};
    
  2. or download this
    $results=~ /(Catalog Number)/;
    if($1) {print "$1\n";} else {print "nothing\n";};