如何檢測(cè)備注字段的字節(jié)數(shù)
發(fā)布時(shí)間:2008-07-09 閱讀數(shù): 次 來源:網(wǎng)樂原科技
視服務(wù)器操作系統(tǒng)語種不同,而采取不同的方法:
1.E文下,len(rs("field")),就行了.len("中文abc")=7
2.Z文下,復(fù)雜一點(diǎn),len("中文abc")=5
lenB("中文abc")=10,所以需要自己寫程序判斷其長(zhǎng)度.
function strLen(str)
dim i,l,t,c
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
strLen=t
end function