Trimming a block of text to the nearest word when a certain character limit is reached? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T23:22:08Zhttp://stackoverflow.com/feeds/question/708882http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/708882/trimming-a-block-of-text-to-the-nearest-word-when-a-certain-character-limit-is-re1Trimming a block of text to the nearest word when a certain character limit is reached?Sam1522009-04-02T08:58:24Z2009-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#7088990Answer by Apikot for Trimming a block of text to the nearest word when a certain character limit is reached?Apikot2009-04-02T09:03:02Z2009-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#7089092Answer by jcinacio for Trimming a block of text to the nearest word when a certain character limit is reached?jcinacio2009-04-02T09:06:50Z2009-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#7089640Answer by Kieran Hall for Trimming a block of text to the nearest word when a certain character limit is reached?Kieran Hall2009-04-02T09:25:29Z2009-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 > $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#7091940Answer by Ciaran McNulty for Trimming a block of text to the nearest word when a certain character limit is reached?Ciaran McNulty2009-04-02T10:34:24Z2009-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=>$word) {
if($pos+strlen($word)<$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#7092241Answer by aleemb for Trimming a block of text to the nearest word when a certain character limit is reached?aleemb2009-04-02T10:41:23Z2009-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>