StemEx v0.0.1 StemEx

Porter stemming algorithm implementation in Elixir

Summary

Functions

Stem function - takes a word and returns it’s stemmed transformation

Functions

stem(word)

Stem function - takes a word and returns it’s stemmed transformation.

Examples

iex> StemEx.stem("x")
"x"

iex> StemEx.stem("xy")
"xy"

iex> StemEx.stem("cats")
"cat"

iex> StemEx.stem("spotting")
"spot"