在分词处截断文本

Posted

tags:

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

This function will truncate strings only at word breaks which can be used to show a teaser for complete article without breaking words.
  1. // Original php code by Chirp Internet: www.chirp.com.au
  2. // Please acknowledge use of this code by including this header.
  3. function myTruncate($string, $limit, $break=".", $pad="...") {
  4. // return with no change if string is shorter than $limit
  5. if(strlen($string) <= $limit)
  6. return $string;
  7.  
  8. // is $break present between $limit and the end of the string?
  9. if(false !== ($breakpoint = strpos($string, $break, $limit))) {
  10. if($breakpoint < strlen($string) - 1) {
  11. $string = substr($string, 0, $breakpoint) . $pad;
  12. }
  13. }
  14. return $string;
  15. }
  16. /***** Example ****/
  17. $short_string=myTruncate($long_string, 100, ' ');

以上是关于在分词处截断文本的主要内容,如果未能解决你的问题,请参考以下文章

PHP:在分词处截断字符串

PHP PHP:在分词符处截断一个字符串

PHP 在分词时截断文本

MySQL 在特殊字符处截断字符串

在第 256 个字符处截断数据 - PHP 与 HFSQL 数据库,使用 PDO ODBC 试点

当谈中文分词时,我们谈些什么?