
Text::Toalpha - Convert arbitary characters into letters

use Text::Toalpha qw(:all); my $alpha = toalpha($var); my $orig = fromalpha($alpha);

Text::Toalpha converts arbitary characters into letters. The interface is the functions toalpha($var) and fromalpha($alpha). They do what there names suggest.
NOTE: This module does not use a code format used anywhere else.
NOTE 2: The code for this module is not a good example and is very messy.


Text::Toalpha uses a mapping table from characters to letters which maps them into digrams. Need more be said?

The resulting output will double in size.
The permutation of characters to letters is not very well permutated. In English, the output characters are not very well distributed over the letters of the alphabet.


Samuel Lauber, <samuell@cpan.org>

Copyright 2005 by Samuel Lauber
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.