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.
|
Edit: You could use positive lookahead to avoid adding an extra space at the end:
|
|||||||||||||
|
|
Alternate solution:
|
|||
|
|