Help for this page

Select Code to Download


  1. or download this
    s//Ktsf/; # now $_ = 'Ktsf'
    s/./chr ord($&)-5/e; # $_ = 'Fona'
    ...
    
    print
    # print $_ and a newline => "Fona\n"
    
  2. or download this
    use strict;
    print map { chr ord($_) - 5 }  ('K', 't', 's', 'f');
    print "\n";