修剪字符串中的额外字符(截断字符串)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修剪字符串中的额外字符(截断字符串)相关的知识,希望对你有一定的参考价值。

If a string exceeds x characters (defaults to 100), trims the string to the first x characters and appends a tail to the end of the truncated string (defaults to an ellipsis).
  1. function trimExtraChars($string, $max = 100, $tail = '...') {
  2. if (strlen($string) > $max) {
  3. $string = substr($string, 0, $max) . $tail;
  4. }
  5.  
  6. return $string;
  7. }

以上是关于修剪字符串中的额外字符(截断字符串)的主要内容,如果未能解决你的问题,请参考以下文章

如何在 C++ 中优雅地格式化字符串,使其四舍五入到小数点后 6 位,并修剪额外的 '0' 或 '9'

修剪vba中的字符串/文件路径?

数据框行中内容的修剪/截断平均值

修剪空白而不影响字符串

限制字符串中的字符数,并截断其余字符

修剪字符串中的多个字符