getTermFilter            package:wordnet            R Documentation

_G_e_t _a _T_e_r_m _F_i_l_t_e_r

_D_e_s_c_r_i_p_t_i_o_n:

     Get a term filter.

_U_s_a_g_e:

     getTermFilter(type, word, ignoreCase)

_A_r_g_u_m_e_n_t_s:

    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.

_V_a_l_u_e:

     A term filter.

_A_u_t_h_o_r(_s):

     Ingo Feinerer

_R_e_f_e_r_e_n_c_e_s:

     M. Wallace (2007). Jawbone Java WordNet API. <URL:
     http://mfwallace.googlepages.com/jawbone.html>

_E_x_a_m_p_l_e_s:

     if (initDict())
       getTermFilter("StartsWithFilter", "car", TRUE)

