<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : Fancy statistics</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : Fancy statistics]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 06 Apr 2026 21:15:38 +0000</pubDate>
  <lastBuildDate>Tue, 16 Dec 2003 10:41:50 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=8132</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[Fancy statistics : If you want to assume that all...]]></title>
   <link>https://forums.webwiz.net/fancy-statistics_topic8132_post41697.html#41697</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=2267">michael</a><br /><strong>Subject:</strong> 8132<br /><strong>Posted:</strong> 16&nbsp;December&nbsp;2003 at 10:41am<br /><br /><P>If you want to assume that all words are seperated by a space you can use a function like<BR><table width="99%"><tr><td><pre class="BBcode"><BR>&nbsp;Function fCountWords(strIn As String) As Integer<BR>&nbsp;&nbsp;&nbsp;&nbsp; Dim varWords As Variant<BR><BR>&nbsp;&nbsp;&nbsp;&nbsp; If InStr(strIn, " ") &gt; 0 Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; varWords = Split(strIn, " ")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fCountWords = UBound(varWords) - LBound(varWords) + 1<BR>&nbsp;&nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fCountWords = 1<BR>&nbsp;&nbsp;&nbsp;&nbsp; End If<BR><BR> End Function<BR></pre></td></tr></table><BR>in your database (use it in db and not in asp so you don't have to pull all records down)<BR>If you want to be sure to catch double spaces etc. (still not 100% because of Forum Codes a VBA function like<BR><table width="99%"><tr><td><pre class="BBcode"><BR>Function WordCount(str As String) As Long<BR><BR>Dim c As String&nbsp; ' Character to examine<BR>Dim i As Long&nbsp; ' index into string<BR>Dim nw As Long&nbsp; ' number of words counted<BR>Dim inword As Boolean ' indicates c is in a word or outside a word<BR><BR>i = 1<BR>Do While i &lt;= Len(str)<BR> c = mid$(str, i, 1)<BR> If (c = Chr$(32) OR c = Chr$(9)) Then<BR> ' c is a "white character" (a non-word character)<BR> ' Add other characters if you like:&nbsp; NL chr(10), CR chr(13), etc.<BR>&nbsp; inword = False<BR> ElseIf Not inword then<BR>&nbsp; inword = True<BR>&nbsp; nw = nw + 1<BR> End If<BR> i = i + 1<BR>Loop <BR><BR>WordCount = nw<BR><BR>End Function<BR></pre></td></tr></table><BR>may work for you.</P><P>Well I don't know why you need that and it sure will cause a lot of overhead depending on the size of your forum but you can use both as a vba function and return the value to an asp page.</P>]]>
   </description>
   <pubDate>Tue, 16 Dec 2003 10:41:50 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/fancy-statistics_topic8132_post41697.html#41697</guid>
  </item> 
  <item>
   <title><![CDATA[Fancy statistics : Has anyone written an WWF mod...]]></title>
   <link>https://forums.webwiz.net/fancy-statistics_topic8132_post41689.html#41689</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13628">k00k</a><br /><strong>Subject:</strong> 8132<br /><strong>Posted:</strong> 16&nbsp;December&nbsp;2003 at 9:11am<br /><br />Has anyone written an WWF mod which displays mad statistics such as number of words etc.?]]>
   </description>
   <pubDate>Tue, 16 Dec 2003 09:11:52 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/fancy-statistics_topic8132_post41689.html#41689</guid>
  </item> 
 </channel>
</rss>