You are here

function porterstemmer_poststemming in Porter-Stemmer 6.2

Same name and namespace in other branches
  1. 7 includes/standard-stemmer.inc \porterstemmer_poststemming()

Turn Y back into y to undo pre-processing.

1 call to porterstemmer_poststemming()
porterstemmer_stem in ./porterstemmer.module
Stems a word, using the Porter Stemmer 2 algorithm.

File

./porterstemmer.module, line 401
This is an implementation of the Porter 2 Stemming algorithm from http://snowball.tartarus.org/algorithms/english/stemmer.html by Jennifer Hodgdon of Poplar ProductivityWare, www.poplarware.com

Code

function porterstemmer_poststemming(&$word) {
  $word = str_replace('Y', 'y', $word);
}