Split on different newlines
Solution 1:
Did you try /\r?\n/
? The ?
makes the \r
optional.
Example usage: http://rubular.com/r/1ZuihD0YfF
Solution 2:
Ruby has the methods String#each_line
and String#lines
returns an enum: http://www.ruby-doc.org/core-1.9.3/String.html#method-i-each_line
returns an array: http://www.ruby-doc.org/core-2.1.2/String.html#method-i-lines
I didn't test it against your scenario but I bet it will work better than manually choosing the newline chars.
Solution 3:
# Split on \r\n or just \n
string.split( /\r?\n/ )
Although it doesn't help with this question (where you do need a regex), note that String#split
does not require a regex argument. Your original code could also have been string.split( "\r\n" )
.