Help for this page

Select Code to Download


  1. or download this
    my @results = map { m/good stuff/ ? do { ... } : () } @array;
    
  2. or download this
    my @results = map sub { return () unless m/good stuff/; ... }, @array;
    
  3. or download this
    my @results = map { ... } grep { m/good stuff/ } @array;