转换中文为unicode 转换unicode到正常文本
作者:bea
代码如下: '//转换中文为unicode functionURLEncoding(vstrIn) dimi dimstrReturn,ThisChr,innerCode,Hight8,Low8 strReturn="" fori=1toLen(vstrIn) ThisChr=Mid(vStrIn,i,1) IfAbs(Asc(ThisChr))<&HFFthen strReturn=strReturn&ThisChr else
代码如下:
'//转换中文为unicode
function URLEncoding(vstrIn)
dim i
dim strReturn,ThisChr,innerCode,Hight8,Low8
strReturn = ""
for i = 1 to Len(vstrIn)
ThisChr = Mid(vStrIn,i,1)
If Abs(Asc(ThisChr)) < &HFF then
strReturn = strReturn & ThisChr
else
innerCode = Asc(ThisChr)
If innerCode < 0 then
innerCode = innerCode + &H10000
end If
Hight8 = (innerCode and &HFF00) &HFF
Low8 = innerCode and &HFF
strReturn = strReturn & "%" & Hex(Hight8) & "%" & Hex(Low8)
end If
next
URLEncoding = strReturn
end function
'//转换unicode到正常文本
function bytes2BSTR(vIn)
dim i
dim strReturn,ThisCharCode,nextCharCode
strReturn = ""
for i = 1 to LenB(vIn)
ThisCharCode = AscB(MidB(vIn,i,1))
If ThisCharCode < &H80 then
strReturn = strReturn & Chr(ThisCharCode)
else
nextCharCode = AscB(MidB(vIn,i+1,1))
strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(nextCharCode))
i = i + 1
end If
next
bytes2BSTR = strReturn
end function
function getText(oReq,url)
on error resume next
'//创建XMLHTTP对象
if oReq is nothing then
set oReq = CreateObject("MSXML2.XMLHTTP")
end if
if not oReq is nothing then
oReq.open "get",url,false
oReq.send
if oReq.status = 200 then
getText = bytes2BSTR(oReq.responseBody)
else
getText = ""
end if
else
getText = ""
end if
end function
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- WINDOWS 2000下使用ISAPI方式安装PHP
- 教你IIS6的PHP最佳配置方法
- 详细介绍:Apache+PHP+MySQL配置攻略
- PHP环境搭建最新方法
- 初学者入门:细述PHP4的核心Zend
- PHP在XP下IIS和Apache2服务器上的安装
- PHP5.0对象模型探索之抽象方法和抽象类
- PHP 5.0对象模型深度探索之绑定
- PHP中的串行化变量和序列化对象
- 最令PHP初学者头痛的十四个问题
- Windows下的PHP5.0安装配制详解
- PHP.MVC的模板标签系统(五)
- PHP.MVC的模板标签系统(四)
- PHP.MVC的模板标签系统(三)
- PHP.MVC的模板标签系统(二)
- PHP.MVC的模板标签系统(一)
- apache+mysql+php+ssl服务器之完全安装攻略
- Windows下PHP5和Apache的安装与配置
- 玩转图像函数库—常见图形操作