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

NAME

Telugu::Utils - Utilities for Telugu strings.

SYNOPSIS

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

  my $util = Telugu::Utils->new();
  my @ngrams = $util->ngram("సర్దార్ జమలాపురం కేశవరావు", 2);
  print $ngrams[1][0], "\n";

DESCRIPTION

Currently it provides one function, ngram. It takes two paramameters, first param must be a string and second param must be an integer.

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.