代码如下所示:
function TrimLength(text, maxLength) {
text = $.trim(text);
if (text.length > maxLength) {
text = text.substring(0, maxLength - ellipsis.length)
return text.substring(0, text.lastIndexOf(" ")) + ellipsis;
}
else
return text;
}
我遇到的问题是它做了以下事情:
hello world and an...
The curse of the gaming backlog –...
我想确保它改为:
hello world and...
The curse of the gaming backlog...
我想我需要确保有像(a、b、c、d 等)这样的字母字符并且没有特殊字符。
任何形式的帮助表示赞赏