将双字节整数转换为单字节-Javascript

时间:2013-03-12 11:12:52

标签: javascript double

可以使用java脚本将双字节整数转换为单字节吗? 我需要将双字节数转换为单字节,当它输入到文本框中时。在jQuery或javascript中有任何方法可用。

2 个答案:

答案 0 :(得分:3)

没有将1(U+FF11)转换为1(U+0031)的内置方法。您可以使用正则表达式为您提到的字符具体执行此操作:

var rex = /[\uFF10-\uFF19]/g;
var str = "1234";

console.log("Before: " + str);  
str = str.replace(rex, function(ch) {
    return String.fromCharCode(ch.charCodeAt(0) - 65248);
});

console.log("After: " + str);

Live Example(务必打开JavaScript控制台)| Source

答案 1 :(得分:0)

为什么不能转换它? 65296是你的神奇数字,表格永远不会改变所以只是在它上下运行你可以用这种方式转换数字。

这会将单字节转换为双字节,然后再转回。

示例需要Jquery,但您可以轻松编写它。

<input type="text" id="one" value="1234567890"><br/>
<input type="text" id="two"><br/>
<input type="text" id="three">

<script>
    symbolsToEntities=function(sText){
        var sNewText = "";
        var iLen = sText.length;
        for (i=0; i<iLen; i++){
        iCode = sText.charCodeAt(i);
            sNewText += (iCode > 256? "&#" + iCode + ";": sText.charAt(i));
        };
        return sNewText;
    };

    ConvertNumber=function(num){
        var O='';
        for (var i = 0, len = num.length; i < len; i++){
            O+='&#'+(parseInt(num[i])+65296)+';';
        };
        return O;
    };

    ConvertNumberagain=function(num){
        var O='';
        var res = num.split(';');
        $.each(res, function( key, value ){
            if (value.length!=0){
                O+=parseInt(value.replace('&#',''))-65296;
            };
        });
        return O;
    };
    var doublebyte=ConvertNumber($('#one').val());
    doublebyte = $('<div>').html(doublebyte).text();
    $('#two').val(doublebyte);
    var singlebyte=symbolsToEntities($('#two').val());
    singlebyte=ConvertNumberagain(singlebyte);
    $('#three').val(singlebyte);
</script>

实例:http://jsfiddle.net/399EM/