Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a ruby string, how can I insert a space every X number of characters?

As an example, I'd like to insert a space every 8 characters of a given string.

share|improve this question

2 Answers

up vote 9 down vote accepted
>> s = "1234567812345678123456781234567812345678"
=> "1234567812345678123456781234567812345678"
>> s.gsub(/(.{8})/, '\1 ')
=> "12345678 12345678 12345678 12345678 12345678 "

Edit: You could use positive lookahead to avoid adding an extra space at the end:

>> s.gsub(/(.{8})(?=.)/, '\1 \2')
=> "12345678 12345678 12345678 12345678 12345678"
share|improve this answer
Close. What about every 8 characters, but don't add a space at the end of the string? – Shpigford Jul 2 '10 at 18:45
2  
just add a strip!. so it would turn into s.gsub(/(.{8})/, '\1 ').strip! – Matt Briggs Jul 2 '10 at 18:48
1  
What if the string initially had leading or trailing spaces? – Nabb Jul 2 '10 at 18:48
@Nabb: Then you could preprocess it w/ s.gsub!(/^\s*|\s*$/,'') – rampion Jul 2 '10 at 19:26

Alternate solution:

s.scan(/.{1,8}/).join(' ')

String#scan will chunk it up for you (into spans of 8 characters - except for the last chunk, which may be shorter), and then Array#join will reunite the chunks with the appropriate character interspersed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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