Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
                                                              
    ...
    my $s = 'eabcde';
    $s =~ tr/abcd/efgh/;
    print "$s\n";
    
  2. or download this
    #!/usr/bin/env perl 
    
    ...
    print "$search\n";
    print "$replace\n";
    print "$result\n";
    
  3. or download this
    eabcde
    efgh
    0