Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a string

$str = 'aaaaabbbbbcccccdddddeeeeefffffggggghhhhhjjjjj';

$pos = 0;
$tmp = 0;
while($pos<strlen($str)) {
  $tmp  .= substr($str,$pos,5)."\n";
  $pos += 5; 
}

I dont want to add a "\n" at the end of produced $str

aaaaa
bbbbb
ccccc
ddddd
eeeee
fffff
ggggg
hhhhh
jjjjj //No new line here
share|improve this question

3 Answers

up vote 3 down vote accepted
echo join("\n", str_split($string, 5));

http://www.php.net/str-split
http://www.php.net/join

share|improve this answer
+1 short and sweet – Alex R. Aug 10 '11 at 10:19
while($pos<strlen($str)) {
  if ($pos > 0) $tmp .= "\n";
  $tmp .= substr($str,$pos,5);
  $pos += 5; 
}
share|improve this answer

One way is to substr the newline after the while loop

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.