Stemmer for French words

french_stemmer(words)

Arguments

words

a character containing the original words.

Value

character with stemmed words.

Examples

french_stemmer(c("tester", "testament", "clients"))
#> [1] "test" "testament" "client"