Skip to main content

stopwords

Filters out (removes) specified stop words from the token stream.

Options

OptionTypeDefaultDescription
STOPWORDSstring listStop words (e.g., '"the","a","an"')
HEXbooleanfalseTreat stop words as hex-encoded strings

Examples

CREATE TEXT SEARCH DICTIONARY stop_filter (
TEMPLATE = 'stopwords',
STOPWORDS = '"the","a","an","is"'
);

Hex-encoded stopwords

CREATE TEXT SEARCH DICTIONARY hex_stop (
TEMPLATE = 'stopwords',
STOPWORDS = '"616263","6D6E6F"',
HEX = true
);

See also