| getTermFilter {wordnet} | R Documentation |
Get a term filter.
getTermFilter(type, word, ignoreCase)
type |
Filter type. Available filters are ContainsFilter,
EndsWithFilter, ExactMatchFilter, RegexFilter,
SoundFilter, StartsWithFilter, and
WildcardFilter. |
word |
Term to be matched. |
ignoreCase |
Indicates whether lower and upper case are distinguished. |
A term filter.
Ingo Feinerer
M. Wallace (2007). Jawbone Java WordNet API. http://mfwallace.googlepages.com/jawbone.html
validInstallation <- initDict()
if (validInstallation) {
dict <- getDictInstance()
getTermFilter("StartsWithFilter", "car", TRUE)
}