str.lines(separator=$/) รข an_array
Instance Public methods
Returns an array of lines in str split using the supplied record
separator ($/
by default). This is a shorthand for
str.each_line(separator).to_a
.
If a block is given, which is a deprecated form, works the same as
each_line
.
Please login to continue.