Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know how to use the substr function but this will happy end a string halfway through a word. I want the string to end at the end of a word how would I go about doing this? Would it involve regular expression? Any help very much appreciated.

This is what I have so far. Just the SubStr...

echo substr("$body",0,260);

Cheers

share|improve this question

5 Answers

up vote 33 down vote accepted

It could be done with a regex, something like this will get up to 260 characters from the start of string up to a word boundary:

$line=$body;
if (preg_match('/^.{1,260}\b/s', $body, $match))
{
    $line=$match[0];
}

Alternatively, you could maybe use the wordwrap function to break your $body into lines, then just extract the first line.

share|improve this answer
3  
a downvote! someone out there hates regular expressions! – Paul Dixon Aug 5 '09 at 13:54
I think they may have down voted because its not using PHP who knows. Works so thanks. – Cool Hand Luke UK Aug 6 '09 at 18:52
Worst-downvote ever--b/c this still works... 2.5 years later – jbnunn Mar 5 '12 at 19:43
substr($body, 0, strpos($body, ' ', 260))
share|improve this answer
1  
Nice, the most compact option – Duncanmoo Oct 25 '12 at 12:32
Stylish solution, but what about UTF-8? – Tony Nov 23 '12 at 12:13
1  
@Tony using mb_substr() would do the trick for UTF-8. – behz4d Dec 14 '12 at 16:59
Yes but wouldn't strpos get confused since now 260 is actually 130 characters? – Tony Dec 15 '12 at 15:00
Work perfectly ! – Peter May 14 at 13:35
show 1 more comment

You can try this:

   $s = substr($string, 0, 261);
   $result = substr($s, 0, strrpos($s, ' '));
share|improve this answer

You could do this: Find the first space from the 260th character on and use that as the crop mark:

$pos = strpos($body, ' ', 260);
if ($pos !== false) {
    echo substr($body, 0, $pos);
}
share|improve this answer
$pos = strpos($body, $wordfind);
echo substr($body,0, (($pos)?$pos:260));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.