Help for this page

Select Code to Download


  1. or download this
    foreach( @array ) { s/something/something_else/g }
    
  2. or download this
    foreach( values %hash ) { s/something/something_else/g }
    
  3. or download this
    foreach( keys %hash ) {
      $hash{$_} =~ s/something/something_else/g;
    }