Replacing spaces using regex in php - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T19:20:28Z http://stackoverflow.com/feeds/question/208046 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/208046/replacing-spaces-using-regex-in-php 2 Replacing spaces using regex in php knight_killer 2008-10-16T10:31:22Z 2008-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>&amp;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&amp;nbsp;&amp;nbsp;asdas1 &amp;nbsp;asda234 4545&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;54 &amp;nbsp;&amp;nbsp;34545 345&amp;nbsp;&amp;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#208076 7 Answer by Jonathan Lonowski for Replacing spaces using regex in php Jonathan Lonowski 2008-10-16T10:48:33Z 2008-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("/(?&lt;=\s)\x20|\x20(?=\s)/", "&amp;#160;", $str); </code></pre> <p>(I opted for #160 since markdown parses nbsp.)</p> <p>Results in:</p> <pre><code>asdasd asdasd&amp;#160;&amp;#160;asdas1 &amp;#160;asda234 4545&amp;#160;&amp;#160;&amp;#160;&amp;#160;54 &amp;#160;&amp;#160;34545 345&amp;#160;&amp;#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 " =&gt; "\n&amp;nbsp;"</code> between the 1st and 2nd lines.</p> http://stackoverflow.com/questions/208046/replacing-spaces-using-regex-in-php/208079#208079 2 Answer by Greg for Replacing spaces using regex in php Greg 2008-10-16T10:49:22Z 2008-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("&amp;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>