Help for this page

Select Code to Download


  1. or download this
      my $x = "x" x 50;
      substr($x, 12, 34) =~ tr[x][y];
    
  2. or download this
      my %x = (a=>1, b=>2, c=>3);
      $_ *= 2 foreach values %x;