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

HotCRC内的QPCodeToHex()源码

[复制链接]
279|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
hotpower|  楼主 | 2023-9-23 10:21 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
菜农电子淘宝:https://hotcomlock.taobao.com/ 准备出书:http://hotcomlock.com/hotcomlock.html
    function QPCodeToHex(hexstring) {
        var i, value, str, hexstr;
        hexstr = "";
        for (i = 0; i < hexstring.length; i += 2)
        {
            value = hextoint(hexstring.substr(i, 2));
            if ((value >= 33 && value <= 60) || (value >= 62 && value <= 126)) {
                str = String.fromCharCode(value);
            }
            else {
                str = "=" + hexstring.substr(i, 2);
            }
            hexstr += str;
        }
        hexstr= AsciiToHex(hexstr);
        return hexstr;
    }


使用特权

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

本版积分规则

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

1460

主题

21619

帖子

506

粉丝