Character Count in String:
Click here for an example.
Code:
Highlight
<%=InstrCount("I went to the store. I bought milk.")%> <% function InstrCount(strData) Dim StringToFind StringToFind = "." If Len(StringToFind) Then InstrCount = UBound(Split(strData, StringToFind)) End If End Function %>