美文网首页JavaScript
js获取字符串的真实长度

js获取字符串的真实长度

作者: Lia代码猪崽 | 来源:发表于2018-11-21 09:25 被阅读1次
    function getTrueLength(str){//获取字符串的真实长度(字节长度)
        let len = str.length, truelen = 0;
        for(let x = 0; x < len; x++){
            if(str.charCodeAt(x) > 128){
                truelen += 2;
            }else{
                truelen += 1;
            }
        }
        return truelen;
    }
    
    谷歌浏览器的运行结果

    相关文章

      网友评论

        本文标题:js获取字符串的真实长度

        本文链接:https://www.haomeiwen.com/subject/lfrqqqtx.html