Catalog Number:
PAL1001
<&c>
I have tried the following code unsuccessfully:
I have tried the following code
$results=~ /(Catalog Number:)/;
if($1) {print "$1\n";} else {print "nothing\n";};
####
$results=~ /(Catalog Number)/;
if($1) {print "$1\n";} else {print "nothing\n";};