asp写的求字符串长度(汉字算两个字符,英文算一个字符)的函数

发布时间:2020-10-09编辑:脚本学堂
asp写的求字符串长度(汉字算两个字符,英文算一个字符)的函数

asp写的求字符串长度(汉字算两个字符,英文算一个字符)的函数,有需要的朋友不妨参考下。

复制代码 代码如下:

<%
'-----------------------------------------------------
'函数名:strLength
'作  用:求字符串长度。汉字算两个字符,英文算一个字符。
'参  数:str  ----要求长度的字符串
'返回值:字符串长度
'------------------------------------------------------
Function strLength(str)
    On Error Resume Next
    Dim WINNT_CHINESE
    WINNT_CHINESE = (Len("中国") = 2)
    If WINNT_CHINESE Then
        Dim l, t, c
        Dim i
        l = Len(str)
        t = l
        For i = 1 To l
            c = Asc(Mid(str, i, 1))
            If c < 0 Then c = c + 65536
            If c > 255 Then
                t = t + 1
            End If
        Next
        strLength = t
    Else
        strLength = Len(str)
    End If
    If Err.Number <> 0 Then Err.Clear
End Function
%>