将字符串截断为设定长度,在单词边界处中断

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将字符串截断为设定长度,在单词边界处中断相关的知识,希望对你有一定的参考价值。

  1. /**
  2.  * Author: Andrew Hedges, [email protected]
  3.  * License: free to use, alter, and redistribute without attribution
  4.  */
  5.  
  6. /**
  7.  * Truncate a string to the given length, breaking at word boundaries and adding an elipsis
  8.  * @param string str String to be truncated
  9.  * @param integer limit Max length of the string
  10.  * @return string
  11.  */
  12. var truncate = function (str, limit) {
  13. var bits, i;
  14. if (STR !== typeof str) {
  15. return '';
  16. }
  17. bits = str.split('');
  18. if (bits.length > limit) {
  19. for (i = bits.length - 1; i > -1; --i) {
  20. if (i > limit) {
  21. bits.length = i;
  22. }
  23. else if (' ' === bits[i]) {
  24. bits.length = i;
  25. break;
  26. }
  27. }
  28. bits.push('...');
  29. }
  30. return bits.join('');
  31. };
  32. // END: truncate

以上是关于将字符串截断为设定长度,在单词边界处中断的主要内容,如果未能解决你的问题,请参考以下文章

如何将 NSString 截断为设定的长度?

将字符串 c++ 截断为长度而不剪切单词

字符串长度截断,但不允许截断单词

显示一定长度的字符串而不截断

使用 MySQL 选择时截断字符串

如何将PHP中的字符串截断为最接近一定数量字符的单词?