Pretty simple question from a first-time Ruby programmer.
How do you loop through a slab of text in Ruby? Everytime a newline is met, I want to re-start the inner-loop.
def parse(input)
...
end
|
1
|
Pretty simple question from a first-time Ruby programmer. How do you loop through a slab of text in Ruby? Everytime a newline is met, I want to re-start the inner-loop.
|
||
|
|
|
|
|
||
|
|
|
|
What Iraimbilanja said. Or you could split the string at new lines:
Beware that Note the regex I used here will take care of all three line ending formats. Lastly, if you want to do more complex string parsing, check out the built-in StringScanner class. |
||
|
|
|
|
You can also do with with any pattern:
|
||
|
|
|
|
I think this should take care of the newlines. |
||
|