Help for this page

Select Code to Download


  1. or download this
    my @list;
    while (<INFILE>) {
     push @list, m/(AAA\.\d)/g;
    }
    
  2. or download this
    while (<INFILE>) {
     if (my @matches = m/(AAA\.\d)/g ) {
      push @list, @matches;
     }
    }