Query: math::base36
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Math::Base36(3pm) User Contributed Perl Documentation Math::Base36(3pm)NAMEMath::Base36 - Encoding and decoding of base36 stringsSYNOPSISuse Math::Base36 ':all'; $b36 = encode_base36( $number ); $number = decode_base36( $b36, $padlength );DESCRIPTIONThis module converts to and from Base36 numbers (0..9 - A..Z) It was created because of an article/challenge in "The Perl Review"METHODSencode_base36( $number, [$padlength] ) Accepts a unsigned int and returns a Base36 string representation of the number. optionally zero-padded to $padlength. decode_base36( $b36 ) Accepts a base36 string and returns a Base10 string representation of the number.AUTHORRune Henssel <perl@henssel.dk>MAINTAINERBrian Cassidy <bricas@cpan.org>COPYRIGHT AND LICENSECopyright 2002 by Rune Henssel Copyright 2007-2010 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-12-06 Math::Base36(3pm)