首页 > 代码库 > 中文字符截断的问题

中文字符截断的问题

function(str,num){
var len=str.length
if(str.replace(/[\u4e00-\u9fbf]/g,‘**‘).length <= num){
return str;
}
while(str.replace(/[\u4e00-\u9fbf]/g,‘**‘).length > num){
str = str.slice(0,len--)
}
return str+‘...‘
}

中文字符截断的问题