qq724174 发表于 2011-3-2 18:34:55

求URL编码转GBK的函数或者UDP

例如把"%CE%D2%C3%C7"转化为"我们"
在论坛搜索都是只有GBK转URL的,没有URL转GBK的,求大家指点。

3mile 发表于 2011-3-2 18:43:54

$a = "%CE%D2%C3%C7"
$temp=StringRegExp($a,"\%{2}",3)
local $str
for $i=0 to UBound($temp)-1 step 2
        $bin='0x'&StringReplace($temp[$i],"%",'')&StringReplace($temp[$i+1],"%",'')
        $str&=BinaryToString($bin)       
Next
msgbox(0,0,$str)

qq724174 发表于 2011-3-2 18:54:26

回复 2# 3mile


    谢谢,测试可以了。
页: [1]
查看完整版本: 求URL编码转GBK的函数或者UDP