Stemmer.Step5 (Stemmer v1.2.0)

Summary

Functions

## Examples

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

Functions

## Examples

iex> Stemmer.Step5.apply("Yellow")
"yellow"
Link to this function

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"