Replacing spaces using regex in php - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T19:20:28Zhttp://stackoverflow.com/feeds/question/208046http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/208046/replacing-spaces-using-regex-in-php2Replacing spaces using regex in phpknight_killer2008-10-16T10:31:22Z2008-10-16T11:32:26Z
<p>I'm pretty new to regular expressions.
I have a requirement to replace spaces in a piece of multi-line text. The replacement rules are these:</p>
<ul>
<li>Replace all spaces at start-of-line with a non-breaking space (<code>&nbsp;</code>)</li>
<li>Replace any instance of repeated spaces (more than one space together) with the same number of non-breaking-spaces</li>
<li>Single spaces which are not at start-of-line remain untouched</li>
</ul>
<p>I used the <a href="http://www.weitz.de/regex-coach/" rel="nofollow">Regex Coach</a> to build the matching pattern:</p>
<pre><code>/( ){2,}|^( )/
</code></pre>
<p>Let's assume I have this input text:</p>
<pre>
asdasd asdasd asdas1
asda234 4545 54
34545 345 34534
34 345
</pre>
<p>using a php regex replace function (like <a href="http://ch.php.net/manual/en/function.preg-replace.php" rel="nofollow"><code>preg_replace()</code></a>) I want to get this output:</p>
<pre>
asdasd asdasd&nbsp;&nbsp;asdas1
&nbsp;asda234 4545&nbsp;&nbsp;&nbsp;&nbsp;54
&nbsp;&nbsp;34545 345&nbsp;&nbsp;34534
34 345
</pre>
<p>I'm happy doing simple text substitutions using regular expressions, but i'm having trouble working out how to replace multiple-times inside the match in order to get the output i desire.</p>
http://stackoverflow.com/questions/208046/replacing-spaces-using-regex-in-php/208076#2080767Answer by Jonathan Lonowski for Replacing spaces using regex in phpJonathan Lonowski2008-10-16T10:48:33Z2008-10-16T11:32:26Z<p>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.</p>
<p>Or, find a space (<code>\x20</code>) that is either lead by or followed by any single whitespace (<code>\s</code>); but, only replace the space.</p>
<pre><code>$str = "asdasd asdasd asdas1\n asda234 4545 54\n 34545 345 34534\n34 345\n";
print preg_replace("/(?<=\s)\x20|\x20(?=\s)/", "&#160;", $str);
</code></pre>
<p>(I opted for #160 since markdown parses nbsp.)</p>
<p>Results in:</p>
<pre><code>asdasd asdasd&#160;&#160;asdas1
&#160;asda234 4545&#160;&#160;&#160;&#160;54
&#160;&#160;34545 345&#160;&#160;34534
34 345
</code></pre>
<p>For more info, check out <a href="http://us2.php.net/pcre" rel="nofollow">PCRE</a> and <a href="http://perldoc.perl.org/perlre.html" rel="nofollow">perlre</a>.</p>
<p><hr /></p>
<p><strong>reply to comments</strong></p>
<p>@<a href="http://stackoverflow.com/users/7508/sprogz"><strong>Sprogz</strong></a>: At first, I thought the same. But the example shows a <code>"\n " => "\n&nbsp;"</code> between the 1st and 2nd lines.</p>
http://stackoverflow.com/questions/208046/replacing-spaces-using-regex-in-php/208079#2080792Answer by Greg for Replacing spaces using regex in phpGreg2008-10-16T10:49:22Z2008-10-16T10:49:22Z<p>You can use PHP's <code>/e</code> modifier to <em>execute</em> some code in the replacement, like this:</p>
<pre><code>$str = preg_replace('/( {2,}|^ )/em', 'str_repeat("&nbsp;", strlen("\1"))', $str);
</code></pre>
<p>I've changed the regular expression to capture the spaces.
The <code>/m</code> modifer puts it into multi-line mode, so <code>^</code> matches the start of any line.</p>