show/hide this revision's text 3 added 290 characters in body

I'd guess that it would be easier to find each space and replace it. To do that, use "look-ahead" and "look-behind" groups.

Or, find a space (\x20) that is either lead by or followed by any single whitespace (\s); but, only replace the space.

$str = "asdasd asdasd  asdas1\n asda234 4545    54\n  34545 345  34534\n34 345\n";

print preg_replace("/(?<=\s)\x20|\x20(?=\s)/", "&#160;", $str);

(I opted for #160 since markdown parses nbsp.)

Results in:

asdasd asdasd&#160;&#160;asdas1
&#160;asda234 4545&#160;&#160;&#160;&#160;54
&#160;&#160;34545 345&#160;&#160;34534
34 345

For more info, check out PCRE and perlre.


reply to comments

@Sprogz: At first, I thought the same. But the example shows a "\n " => "\n&nbsp;" between the 1st and 2nd lines.

show/hide this revision's text 2 added 124 characters in body

I'd guess that it would be easier to find each space and replace it. To do that, use "look-ahead" and "look-behind" groups.

Or, find a space (\x20) that is either lead by or followed by any single whitespace (\s); but, only replace the space.

$str = "asdasd asdasd  asdas1\n asda234 4545    54\n  34545 345  34534\n34 345\n";

print preg_replace("/(?<=\s)\x20|\x20(?=\s)/", "&#160;", $str);

(I opted for #160 since markdown parses nbsp.)

Results in:

asdasd asdasd&#160;&#160;asdas1
&#160;asda234 4545&#160;&#160;&#160;&#160;54
&#160;&#160;34545 345&#160;&#160;34534
34 345

For more info, check out PCRE and perlre.

show/hide this revision's text 1

I'd guess that it would be easier to find each space and replace it. To do that, use "look-ahead" and "look-behind" groups.

$str = "asdasd asdasd  asdas1\n asda234 4545    54\n  34545 345  34534\n34 345\n";

print preg_replace("/(?<=\s)\x20|\x20(?=\s)/", "&#160;", $str);

(I opted for #160 since markdown parses nbsp.)

Results in:

asdasd asdasd&#160;&#160;asdas1
&#160;asda234 4545&#160;&#160;&#160;&#160;54
&#160;&#160;34545 345&#160;&#160;34534
34 345

For more info, check out PCRE and perlre.