01.
REM
**********************************************************
02.
REM
文字列のバイト計算
03.
REM
**********************************************************
04.
Function ByteLen( strTarget )
05.
06.
Dim i,nLen,nRet,strMoji,nAsc
07.
08.
nRet = 0
09.
10.
nLen = Len( strTarget )
11.
12.
For i = 1 to nLen
13.
nRet = nRet + 2
14.
strMoji = Mid( strTarget, i, 1 )
15.
nAsc = Asc( strMoji )
16.
if
&H0 <= nAsc and nAsc <= &H80 then
17.
nRet = nRet - 1
18.
end
if
19.
if
&HA0 <= nAsc and nAsc <= &HDF then
20.
nRet = nRet - 1
21.
end
if
22.
if
&HFD <= nAsc and nAsc <= &HFF then
23.
nRet = nRet - 1
24.
end
if
25.
Next
26.
27.
ByteLen = nRet
28.
29.
End Function