Split on different newlines Split on different newlines ruby ruby

Split on different newlines


Did you try /\r?\n/ ? The ? makes the \r optional.

Example usage: http://rubular.com/r/1ZuihD0YfF


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.


# Split on \r\n or just \nstring.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" ).