urlencode 适用于ansi和unicode版本 Autohotkey

本脚本来自于Thinkai的博客,仅作为归档。

urlencode(string,encoding:="UTF-8"){
    VarSetCapacity(pstr,ceil(strlen(string)*1.5+10),0)
    StrPut(string,&pstr,,encoding)
    int := "1"
    while (int){
        int := ToBase(NumGet(&pstr,(A_index-1)*4,"Uint"),16)
 
        RegExMatch(int,"(.{2})(.{2})(.{2})(.{2})",m)
        loop 4
        {
            i := 4-A_index+1
            hex := % m%i%
            if hex
            {
                hex2 := "0x" hex
                If (hex2==33 || (hex2>=39 && hex2 <=42) || hex2==45 || hex2 ==46 || (hex2>=48 && hex2<=57) || (hex2>=65 && hex2<=90) || hex2==95 || (hex2>=97 && hex2<=122) || hex2==126)
                    out .= chr("0x" hex)
                else
                    out .= "%" hex
            }
        }
    }
    Return out
}
 
 
ToBase(n,b){
    return (n < b ? "" : ToBase(n//b,b)) . ((d:=Mod(n,b)) < 10 ? d : Chr(d+55))
}

 

 

给TA捐赠
共{{data.count}}人
人已捐赠
其他案例

浮岛拼图|liuyukuan|股票类-2.为通达信软件定义快捷键(发送按键法)

2020-2-20 14:45:48

其他教程

XP版clip.exe Autohotkey

2020-2-21 15:05:17

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
有新私信 私信列表
搜索