Trimming a block of text to the nearest word when a certain character limit is reached? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:22:08Z http://stackoverflow.com/feeds/question/708882 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/708882/trimming-a-block-of-text-to-the-nearest-word-when-a-certain-character-limit-is-re 1 Trimming a block of text to the nearest word when a certain character limit is reached? Sam152 2009-04-02T08:58:24Z 2009-04-02T10:41:23Z <p>Here is the question: How would your trim a block of text to the nearest word when a certain amount of characters have past. I'm not trying to limit a certain number words or letters, but limit the letters and cut it off at the nearest word.</p> <p>Say I had two strings:</p> <pre><code>"This is a block of text, blah blah blah" "this is another block of txt 2 work with" </code></pre> <p>Say I wanted to limit it to 27 characters, the first line would end at "blah" and the second on would end at "txt" even though the character limits are reached within those words.</p> <p>Is there any clean solution to this problem?</p> http://stackoverflow.com/questions/708882/trimming-a-block-of-text-to-the-nearest-word-when-a-certain-character-limit-is-re/708899#708899 0 Answer by Apikot for Trimming a block of text to the nearest word when a certain character limit is reached? Apikot 2009-04-02T09:03:02Z 2009-04-02T09:03:02Z <p>Wouldn't it be simpler to concat the strings using a place holder (i.e.: ###PLACEHOLDER###), count the chars of the string minus your place holder, trim it to the right length with substr and then explode by placeholder?</p> http://stackoverflow.com/questions/708882/trimming-a-block-of-text-to-the-nearest-word-when-a-certain-character-limit-is-re/708909#708909 2 Answer by jcinacio for Trimming a block of text to the nearest word when a certain character limit is reached? jcinacio 2009-04-02T09:06:50Z 2009-04-02T09:06:50Z <p>See the <a href="http://php.net/manual/en/function.wordwrap.php" rel="nofollow">wordwrap</a> function.</p> <p>I would probably do something like:</p> <pre><code>function wrap($string) { $wstring = explode("\n", wordwrap($string, 27, "\n") ); return $wstring[0]; } </code></pre> <p>(If your strings already span across severeal lines, use other char - or pattern - for the split other than "\n")</p> http://stackoverflow.com/questions/708882/trimming-a-block-of-text-to-the-nearest-word-when-a-certain-character-limit-is-re/708964#708964 0 Answer by Kieran Hall for Trimming a block of text to the nearest word when a certain character limit is reached? Kieran Hall 2009-04-02T09:25:29Z 2009-04-02T09:25:29Z <p>I think this should do the trick:</p> <pre><code>function trimToWord($string, $length, $delimiter = '...') { $string = str_replace("\n","",$string); $string = str_replace("\r","",$string); $string = strip_tags($string); $currentLength = strlen($string); if($currentLength &gt; $length) { preg_match('/(.{' . $length . '}.*?)\b/', $string, $matches); return rtrim($matches[1]) . $delimiter; } else { return $string; } } </code></pre> http://stackoverflow.com/questions/708882/trimming-a-block-of-text-to-the-nearest-word-when-a-certain-character-limit-is-re/709194#709194 0 Answer by Ciaran McNulty for Trimming a block of text to the nearest word when a certain character limit is reached? Ciaran McNulty 2009-04-02T10:34:24Z 2009-04-02T10:34:24Z <p>You can use a little-known modifier to str_word_count to help do this. If you pass the parameter '2', it returns an array of where the word position are. </p> <p>The following is a simple way of using this, but it might be possible to do it more efficiently:</p> <pre><code>$str = 'This is a string with a few words in'; $limit = 20; $ending = $limit; $words = str_word_count($str, 2); foreach($words as $pos=&gt;$word) { if($pos+strlen($word)&lt;$limit) { $ending=$pos+strlen($word); } else{ break; } } echo substr($str, 0, $ending); // outputs 'this is a string' </code></pre> http://stackoverflow.com/questions/708882/trimming-a-block-of-text-to-the-nearest-word-when-a-certain-character-limit-is-re/709224#709224 1 Answer by aleemb for Trimming a block of text to the nearest word when a certain character limit is reached? aleemb 2009-04-02T10:41:23Z 2009-04-02T10:41:23Z <p>I wrote a <a href="http://aleembawany.com/projects/code-snippets/#toc-max-string-length" rel="nofollow">max-string-length</a> function that does just this and is very clean.</p>