Help > Web Development > Object Reference > Object Reference > ISYSIndex > FindWordMatch Method
<a name="kanchor425"></a>ISYSIndex:FindWordMatch Method
Returns a list of words from the index that match the specified word.

Syntax
[VBScript]
function ISYSIndex.FindWordMatch(_
  string Word, _ 
  long SearchType_ 
) as ISYSWordSearch
[C#]
IISYSWordSearch  IISYSIndex.FindWordMatch(
  string Word, 
  long SearchType
);
[ColdFusion/Java]
IISYSWordSearch  IISYSIndex.FindWordMatch(
  java.lang.String Word, 
  long SearchType
) throws ComException;
Parameters
WordThe word that you wish to look up in the index
SearchTypeThe type of word lookup you wish to perform
isysWordSearchStem0
isysWordSearchSoundLike1

Examples
[VBScript]
<% set wordSearch = Application("ISYSIndex").FindWordMatch(Request("search"), _ WordSearchSoundLike) for each item in wordSearch Response.Write "The word " & Item.Word & " occurs " & Item.Count & " times" next %>
See Also