Skip to main content

📦 @bntk/stemming

removePrefix()​

function removePrefix(word): string;

Defined in: stemming.ts:26

Removes matching prefix from the beginning of a word

Parameters​

ParameterTypeDescription
wordstringThe word to remove prefix from

Returns​

string

The word with prefix removed if matched, otherwise original word


removeSuffix()​

function removeSuffix(word): string;

Defined in: stemming.ts:46

Removes matching suffix from the end of a word

Parameters​

ParameterTypeDescription
wordstringThe word to remove suffix from

Returns​

string

The word with suffix removed if matched, otherwise original word


stemWord()​

function stemWord(word): string;

Defined in: stemming.ts:65

Stems a Bangla word by removing prefixes and suffixes

Parameters​

ParameterTypeDescription
wordstringThe word to stem

Returns​

string

The stemmed word


stemWords()​

function stemWords(words): string[];

Defined in: stemming.ts:84

Stems an array of Bangla words

Parameters​

ParameterTypeDescription
wordsstring[]Array of words to stem

Returns​

string[]

Array of stemmed words