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

Imagine I have 150 characters long string. I would like to divide it into 3 parts, each max 50 characters long. The trick is I also have to keep words intact while dividing the string into 3 parts.

I could use substr and check if it cut the word into half or not. I would like to know if there is any other elegant way to do this.

I also have to keep it in mind that the string might have less than 150 characters. For example if it is 140 characters long then it should be 50 + 50 + 40.

In case if it is less than 100 than it should be 50 + 50. If it is 50 characters or less it shouldn't divide the string.

I would be glad to hear your ideas / ways to approach this.

Thank you in advance for your time and concern.

share|improve this question
2  
ref: wordwrap – Yoshi May 4 '12 at 12:09
Thanks Yoshi... – Revenant May 4 '12 at 12:19

2 Answers

up vote 5 down vote accepted

Sounds like you just want the php function wordwrap()

 string wordwrap ( string $str [, int $width = 75 [, string $break = "\n" [, bool $cut = false ]]] )

Wraps a string to a given number of characters using a string break character.

share|improve this answer
That was a quick one, I don't know why did I miss it. Thanks a lot. – Revenant May 4 '12 at 12:14

I dont think this is the best solution performance-wise but it's somehting

$text = 'Lorem te...';
$strings = array(0=>'');
$string_size = 50;
$ci = 0;
$current_len = 0;
foreach( explode(' ', $text) as $word ) {
  $word_len = strlen($word) + 1;
  if( ($current_len + $word_len) > ($string_size - 1) )
    $strings[$ci] = rtrim( $strings[$ci] );
    $ci++;
    $current_len = 0;
    $strings[$ci] = '';
  }

  $strings[$ci] .= $word.' '; 
  $current_len = $current_len + $word_len;
}
share|improve this answer
1  
This is more or less what I had before seeing AD7six solution. – Quentin Pradet May 4 '12 at 12:19
1  
Thank you for your concern. It seems wordwrap() is the most elegant way to go. – Revenant May 4 '12 at 12:19
Ah, yes, wordwrap seems like the perfect solution! – Vic May 4 '12 at 12:22

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.