Help for this page

Select Code to Download


  1. or download this
    ($sEnd) = map {s/hello/goodbye/g; $_;} map {$_} ($sBegin);
    
  2. or download this
    ($sEnd) = map {s/hello/goodbye/g; $_;} @{[$sBegin]};
    
  3. or download this
    $sEnd = do {local $_ = $sBegin; s/hello/goodbye/g; $_;};
    
  4. or download this
    (my $sEnd = $sBegin) =~ s/hello/goodbye/g;