Help for this page

Select Code to Download


  1. or download this
    @modified_list = map { 
      $_ =~ /good stuff/ :
       #do stuff here
      ? () } @array;
    
  2. or download this
    @modified_list = map { 
    #do stuff here
     } grep { /good_stuff/ } @array