|
'--------------------------------------------------
' Function: LenByte --中文名
' Purpose: 计算源字符串Str的长度(一个中文字符为2个字节长)
' Input: 输入参数 [in]Byval [out]Byref
' [in] str [String]: 源字符串
' Output: LenByte [Long]: 源字符串的长度
' Information:
' 修改: xx 2004/09/24 说明:
'--------------------------------------------------
Public Function LenByte(str) As Long
Dim Length As Integer, i As Integer
LenByte = 0
If Not IsNull(str) Then '如不为空
Length = Len(str)
If Length Then '如长度不为零
For i = 1 To Length
If Asc(Mid(str, i, 1)) < 0 Then
LenByte = Int(LenByte) + 2
Else
LenByte = Int(LenByte) + 1
End If
Next
End If
End If
End Function
以上我自己的代码,请参考! |
|