Help for this page

Select Code to Download


  1. or download this
    $ perl -le '
    > $text = q{this text};
    > print do{ $text =~ s{this}{that}; $text };'
    that text
    $
    
  2. or download this
    $ perl -le '
    > $text = q{this text};
    > print map { s{this}{that}; $_ } $text;'
    that text
    $