这篇文章主要为大家详细介绍了JS 计算字符串实际长度,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* UTF8字符集实际长度计算
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
function getStrLeng(str){
var realLength = 0;
var len = str.length;
var charCode = -1;
for(var i = 0; i < len; i++){
charCode = str.charCodeAt(i);
if (charCode >= 0 && charCode <= 128) {
realLength += 1;
}else{
// 如果是中文则长度加3
realLength += 3;
}
}
return realLength;
}
// 来自:四海网(www.q1010.com)
JS计算字符串实际长度, JS代码如下:
/**
* GBK字符集实际长度计算
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
function getStrLeng(str){
var realLength = 0;
var len = str.length;
var charCode = -1;
for(var i = 0; i < len; i++){
charCode = str.charCodeAt(i);
if (charCode >= 0 && charCode <= 128) {
realLength += 1;
}else{
// 如果是中文则长度加2
realLength += 2;
}
}
return realLength;
}
// 来自:四海网(www.q1010.com)
本文来自:http://www.q1010.com/174/1629-0.html
注:关于JS 计算字符串实际长度的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。