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)/", " ", $str);
(I opted for #160 since markdown parses nbsp.)
Results in:
asdasd asdasd  asdas1
 asda234 4545    54
  34545 345  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 " between the 1st and 2nd lines.
