show/hide this revision's text 5 edited title

how to replace Replacing spaces using regex in php?

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:

  • Replace all spaces at start-of-line with a non-breaking space ( )
  • Replace any instance of repeated spaces (more than one space together) with the same number of non-breaking-spaces
  • Single spaces which are not at start-of-line remain untouched

I used the Regex Coach to build the matching pattern:

/( ){2,}|^( )/

Let's assume I have this input text:

asdasd asdasd  asdas1
 asda234 4545    54
  34545 345  34534
34 345

using a php regex replace function (like preg_replace()) I want to get this output:

asdasd asdasd  asdas1
 asda234 4545    54
  34545 345  34534
34 345

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.

show/hide this revision's text 4 Reformatted examples using pre after Cheekysoft overwritten previous verison

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:

  • Replace all spaces at start-of-line with a non-breaking space ( )
  • Replace any instance of repeated spaces (more than one space together) with the same number of non-breaking-spaces

I used the Regex Coach to build the matching pattern:

/( ){2,}|^( )/

Let's assume I have this input text:

asdasd asdasd  asdas1
 asda234 4545    54
  34545 345  34534
34 345

using a php regex replace function (like preg_replace()) I want to get this output:

asdasd asdasd&nbsp&nbspasdas1
&nbspasda234   asdas1
 asda234 4545&nbsp&nbsp&nbsp&nbsp54
&nbsp&nbsp34545     54
  34545 345&nbsp&nbsp34534
  34534
34 345

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.

Yes, I know that the real non breaking space has a semicolon, but this editor here converts it to a regular space, even inside a codeblock...

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

Im

I'm pretty new to regexpregular expressions. I have a requirement to replace all spaces from in a multiline-text they piece of multi-line text. The replacement rules are these:

  • Replace all spaces at the begining of a line start-of-line with a non breaking non-breaking space ( )and all "
  • Replace any instance of repeated spaces (more then than one spaces" space together) with the equivalent count same number of non breaking spaces too.non-breaking-spaces

I used the Regex Coach to build the matching pattern:

/( ){2,}|^( )/

Let's assume I have this input text:

asdasd asdasd  asdas1
 asda234 4545    54
  34545 345  34534
34 345

using a php regex replace function (like preg_replace()) I want to get this output:

asdasd asdasd  asdas1
 asda234 &nbsp&nbspasdas1
&nbspasda234 4545    54
  34545 &nbsp&nbsp&nbsp&nbsp54
&nbsp&nbsp34545 345  34534
&nbsp&nbsp34534
34 345

I know how to replace a

I'm happy doing simple text substitutions using regex. But regular expressions, but i'm having trouble working out how can I to replace a string with the count of a substring multiple-times inside a the match in order to get this the output ?i desire.

Yes, I know that the real non breaking space has a semicolon, but this editor here converts it to a regular space, even inside a codeblock...

show/hide this revision's text 2 Don't use code blocks for things that aren't code
show/hide this revision's text 1