Function mul::noun_stemmer[][src]

pub fn noun_stemmer(input: &str) -> String
Expand description

Removes noun inflections such as টি, কে, তে etc from the input and returns it.

use mul::noun_stemmer;
 
assert_eq!(noun_stemmer("মানুষদেরকে"), "মানুষ");
assert_eq!(noun_stemmer("গাছগুলোতে"), "গাছ");
assert_eq!(noun_stemmer("বাসাতে"), "বাসা");