Help > Web Development > Object Reference > Object Reference > ISYSResultList > Stats Property
<a name="kanchor526"></a>ISYSResultList:Stats Property
Returns the word statistics for the current search. The text is delimitered by carriage returns and tabs. Read-Only.

Syntax
[VBScript]
ReadOnly property ISYSResultList.Stats as string
[C#]
string IISYSResultList.Stats {get;}
[ColdFusion/Java]
java.lang.String ISYSResultList.Stats() throws ComException;
Examples
[VBScript]
<% ' Executes a prepared ISYSSearch object Set results = Search.Execute ' Extracts the word list from the results wordList = Split(Results.Stats, Chr(13)) %> <% For Each Word in wordList Parts = Split(word, Chr(9)) %><%= Parts(0) %> occurs <%= Parts(1) %> times <br /><% Next %>