打印
[实用程序源码及工具软件]

HotCRC内的HexToQPCode()源码

[复制链接]
313|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
hotpower|  楼主 | 2023-9-23 10:19 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
菜农电子淘宝:https://hotcomlock.taobao.com/ 准备出书:http://hotcomlock.com/hotcomlock.html
    function HexToQPCode(hexstr) {
        var i, str, value, ch ,hexstrString;
        hexstrString = "";
        i = 0;
        while(i < hexstr.length)
        {
            str = hexstr.substr(i, 2);
            value = hextoint(str);
            ch = String.fromCharCode(value);
            if(ch != "=") {
                i += 2;
            }
            else {
                ch = hexstr.substr(i + 2, 4);
                str = HexToAscii(ch);
                i += 6;
            }
            hexstrString += str;
        }
        return hexstrString;//输出3N个字节
    }

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

个人签名:[url=http://www.21ic.com/tools/HotWC3_V1.23.html]

1460

主题

21619

帖子

506

粉丝