Lingua-PT-Hyphenate README


Lingua-PT-Hyphenate documentation  | view source Contained in the Lingua-PT-Hyphenate distribution.

Index


NAME

Top

Lingua::PT::Hyphenate - Separates Portuguese words in syllables

SYNOPSIS

Top

  use Lingua::PT::Hyphenate;

  @syllables = hyphenate("teste")   # @syllables now hold ('tes', 'te')

  # or

  $word = new Lingua::PT::Hyphenate;
  @syllables = $word->hyphenate;

DESCRIPTION

Top

Separates Portuguese words into syllables.

ALGORITHM

Top

The algorithm has several steps, but all of them consist on marking points of the word that either are to be separated or that are not allowed to be separated.

After all those main steps are fulfilled, the marks for non-separation are removed and the word is finally splitted by the other marks and returned as an array.

METHODS

Top

new

Creates a new Lingua::PT::Hyphenate object.

  $word = Lingua::PT::Hyphenate->new("palavra");
  # "palavra" is Portuguese for "word"

If you're doing this lots of time, it would probably be better for you to use the hyphenate function directly (that is, creating a new object for each word in a long text doesn't seem so bright if you're not going to use it later on).

hyphenate

Separates a Portuguese in syllables.

  my @syllables = hyphenate('palavra');
  # @syllables now hold ('pa', 'la', 'vra')

  # or, if you created an object
  my @syllables = $word->hyphenate

TO DO

Top

* A better explanation of the algorithm;
* More tests, preferably made by someone else or taken out of some book.

SEE ALSO

Top

Gramatica Universal da Lingua Portuguesa (Texto Editora)

More tools for the Portuguese language processing can be found at the Natura project: http://natura.di.uminho.pt

AUTHOR

Top

Jose Castro, <cog@cpan.org>

COPYRIGHT AND LICENSE

Top


Lingua-PT-Hyphenate documentation  | view source Contained in the Lingua-PT-Hyphenate distribution.