RiTa
index
Name getWildcardMatch()
Class RiWordnet
Description Returns up to maxResults of the specified pos matching a wildcard pattern,
with '*' representing any number of characters,
and '?' equals any single character..

Example: 't?le' returns (tale,tile,tole)
Example: 't*le' returns (tatumble, turtle, tussle, etc.)
Example: 't?le*' returns (telex, tile,tilefish,tile,talent, tiles, etc.)

Syntax
getWildcardMatch(pattern, posStr);
getWildcardMatch(pattern, posStr, maxResults);
Parameters
pattern  
posStr  
maxResults  
Returns java.lang.String[]
Usage Web & Application
Related