Help for this page
# $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 }