Help for this page

Select Code to Download


  1. or download this
    # $str contains the characters to encode
    my @chars = split //, $str;
    ...
        if( $_ eq 'c' ) { $_ = 'p' }
        # And so on. I think you all see where this is going
    }