I have a file that contains 10 lines - I want to retrieve it, and then split them with a newline("\n") delimiter.
here's what I did
val data = io.Source.fromFile("file.txt").toString;
But this causes an error when I try to split the file on newlines.
I then tried
val data = io.Source.fromFile("file.txt").mkString;
And it worked.
What the heck? Can someone tell me what the difference between the two methods are?
toStringis a debugging method. It's true purpose is to make all objects printable, so that debugging messages/debuggers will be able to display something. – Daniel C. Sobral Mar 22 '12 at 1:44