Stemmer v1.0.0-beta.0 Stemmer.Step5

Summary

Functions

## Examples

Search for the following suffixes, and, if found, perform the action indicated

Functions

apply(word)

## Examples

iex> Stemmer.Step5.apply("Yellow")
"yellow"
remove_suffix_in_r2(word)

Search for the following suffixes, and, if found, perform the action indicated.

Examples

iex> Stemmer.Step5.remove_suffix_in_r2("conceive")
"conceiv"

iex> Stemmer.Step5.remove_suffix_in_r2("move")
"move"

iex> Stemmer.Step5.remove_suffix_in_r2("momoie")
"momoi"

iex> Stemmer.Step5.remove_suffix_in_r2("moe")
"moe"

iex> Stemmer.Step5.remove_suffix_in_r2("daniell")
"daniel"

iex> Stemmer.Step5.remove_suffix_in_r2("doll")
"doll"

iex> Stemmer.Step5.remove_suffix_in_r2("mail")
"mail"