码迷,mamicode.com
首页 > 其他好文 > 详细

求一个字符串长度

时间:2014-09-02 17:06:24      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   div   cti   log   

function strLength(str){
    var time1 = new Date;
    if(str.length == 0 || !str) return null;
    var l = str.length;
    for(var i = 0; i< str.length; i++){
        if(str.charCodeAt(i) > 255) l++;
    }
    console.log("耗时:" + (new Date - time1) + " 毫秒");
    return l;

}
console.log(strLength(str));

 

求一个字符串长度

标签:style   blog   color   io   ar   for   div   cti   log   

原文地址:http://www.cnblogs.com/leejersey/p/3951627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!