Help > Web Development > Object Reference > Object Reference > ISYSWordSearch
<a name="kanchor575"></a>ISYSWordSearch Object
ISYSWordSearchEnum allows you to enumerate the results of ISYSIndex.FindWordMatch.
ISYSWordSearch Properties
CountThe number of times the word appears in the index. Read-Only.
ItemThe word or its derivatives. Read-Only.
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
ISYSIndex.FindWordMatch