//正则:用于区分中文为两个字节
function getLength(str){
return String(str).replace(/[^\x00-\xff]/g,'aa').length;
}
输入:
abc:返回3
测试:返回4
时间: 2024-10-21 18:11:31
//正则:用于区分中文为两个字节
function getLength(str){
return String(str).replace(/[^\x00-\xff]/g,'aa').length;
}
输入:
abc:返回3
测试:返回4