Right now I\'m doing a split on a string and assuming that the newline from the user is \\r\\n like so:
split
\\r\\n
string.split(/\\r\\n/) <
string.split(/\\r\\n/)
Perhaps do a split on only '\n' and remove the '\r' if it exists?