The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Telugu::AsciiMap - Map Telugu chars to ascii chars to save space

SYNOPSIS

  use Telugu::AsciiMap;
  use utf8;
  binmode STDOUT, ":encoding(UTF-8)";

  my $map = Telugu::AsciiMap->new();
  my $asciistring = $map->asciimap('రాజ్కుమార్రెడ్డి');     # use asciimap method to convert telugu text to ascii
  my $telugustring = $map->asciimap($asciistring);  # use the same method to convet back ascii text to telugu
  print $asciistring, "\n", $telugustring, "\n";

DESCRIPTION

Each Telugu char uses four times the space required for an ascii char. This module provides a functions to convert Telugu text to ascii text and to convert back that ascii text to Telugu.

AUTHOR

Rajkumar Reddy, mesg.raj@outlook.com

COPYRIGHT AND LICENSE

Copyright (C) 2019 by Rajkumar Reddy

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.26.1 or, at your option, any later version of Perl 5 you may have available.