Help for this page

Select Code to Download


  1. or download this
    @my_array_2 = map { local $_ = $_; s/^CHOP_ME_OFF_//; $_ } @my_array;
    
  2. or download this
    @my_array_2 = map {s/^CHOP_ME_OFF_//; $_ } @my_array;
    
  3. or download this
    @my_array = map {s/^CHOP_ME_OFF_//; $_ } @my_array;