Help for this page

Select Code to Download


  1. or download this
    my @name;
    push @name, m{ /(\w+) /foo\z }x
      for @FILES;
    
  2. or download this
    my @name = map m{ /(\w+) /foo\z }x, @FILES;