Help for this page

Select Code to Download


  1. or download this
    my @matches;
    for (@fields) {
       push @matches, /%%(\w+?)%%/g;
    }
    
  2. or download this
    my @matches = map /%%(\w+?)%%/g, @fields;