首页 > 网站 > 建站经验 > 正文

ASP字数_计算函数

2019-11-02 15:10:33
字体:
来源:转载
供稿:网友

 <%

'ASP字数计算函数
Function WordCount(strInput)
    Dim strTemp
    strTemp = Replace(strInput, vbTab, " ")
    strTemp = Replace(strTemp, vbCr, " ")
    strTemp = Replace(strTemp, vbLf, " ")

 

    ' 删除字首字尾空格
    strTemp = Trim(strTemp)

 

    ' 替换为一个空格
    Do While InStr(1, strTemp, "  ", 1) <> 0
    &nbs

a67手机电影网[www.aikan.tv/special/a67shoujidianyingwang/]
p;   strTemp = Replace(strTemp, "  ", " ")
    Loop
WordCount = UBound(Split(strTemp, " ", -1, 1)) +1
End Function
%>

 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表