Help for this page

Select Code to Download


  1. or download this
    while (<INFILE>) {
       while (s/(AAA\.\d)/xxxxx/) {
         push (@list, $1);
       }
    }
    
  2. or download this
    while (<DATA>) {
       push (@foo, grep /AAA\.\d/, split(/\s*,\s*/));
    }