for my app if there is one white space that is fine. But if there is 2-4 I want to replace them with &nbsp to preserve the spacing.

What's the best way to do this with rails/regex? Or something else?

Desired Output:

' ' = ' '
'  ' = '  '
'   ' = '   '
'    ' = '    '
link|improve this question

70% accept rate
should be fine if you replace single spaces with &nbsp - no? – klochner Jan 17 at 4:57
@klochner -   does not allow for a line break! – Joseph Silber Jan 17 at 4:58
@JosephSilber - good to know, thanks. – klochner Jan 17 at 5:11
feedback

2 Answers

up vote 3 down vote accepted

Why do you need both of them converted? Why not leave one as an actual space?

Then you could just use a lookahead:

srt.gsub(/ (?= )/, ' ')

See it here in action: http://regexr.com?2vodu

link|improve this answer
It wont give expected output. `' '.gsub(/ (?= )/, ' ') => '  ' – Sayuj Jan 17 at 10:09
See the question, if 2 whitespace comes, both the space should be replaced with  . but you code won't do that. you got? – Sayuj Jan 23 at 13:53
feedback

You just need a pattern that matches 2 or more spaces, then use the block form of gsub and look at how long the match is:

s.gsub(/ {2,}/) { ' ' * $&.length }

For example:

>> ' '.gsub(/ {2,}/) { ' ' * $&.length }
=> " "
>> (' ' * 2).gsub(/ {2,}/) { ' ' * $&.length }
=> "  "
>> (' ' * 3).gsub(/ {2,}/) { ' ' * $&.length }
=> "   "
>> (' ' * 11).gsub(/ {2,}/) { ' ' * $&.length }
=> "           "
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.