Hi,
I am wondering if there is some way to maintain a stopword list with widcards:
ignoring anything that starts with "foo":
foo*
i am doing some funky hackery inside DIH via javascript to make my autosuggest
work. i basically split phrases and store them together with the full phrase:
the phrase:
"Foo Bar"
becomes:
Foo Bar
foo bar
{foo}Foo_Bar
{bar}Foo_Bar
the phrase:
"Foo-Bar"
becomes:
Foo-Bar
foo-bar
{foo}Foo-Bar
{bar}Foo-Bar
However if "bar" is a stop word, i would like to simply ignore all tokens that
start with {bar}
Obviously I could have this logic inside my DIH script, but then i would need
to read in the stopword.txt file the script, which i would like to avoid, then
again it would probably be the more efficient approach.
regards,
Lukas Kahwe Smith
[email protected]