//正则:用于区分中文为两个字节
function getLength(str){
return String(str).replace(/[^\x00-\xff]/g,'aa').length;
}
输入:
abc:返回3
测试:返回4
2023-02-26 08:09:09
//正则:用于区分中文为两个字节
function getLength(str){
return String(str).replace(/[^\x00-\xff]/g,'aa').length;
}
输入:
abc:返回3
测试:返回4