I have a little program that does

var lineArray = lines.split("\r?\n")

Before it was

var lineArray = lines.split("\n") 

which did not work. I found the answer obviously (as in the correction I need to make) but I can't for the life of me find why this happened.

The file it was doing this for was a csv, shoot, plucky darn, beans

link|improve this question

25% accept rate
don't forget to accept an answer. – Amir Raminfar Nov 19 '11 at 0:35
feedback

2 Answers

This has nothing to do with scala. The is a regular expression question. ? in regex means match zero or one occurrences. So this matches \r\n or \n.

link|improve this answer
also note that ? is inherently greedy. it always tries to match the one occurrence, and if that fails it backtracks. – Sean Nilan Nov 18 '11 at 21:40
Okay it seems the answer is to look into regular expressions! Thanks! – user1054583 Nov 18 '11 at 21:47
Sean is there a better way I can check into? If no response I'll gladly read up on regex stuff. – user1054583 Nov 18 '11 at 21:48
feedback

This is looking for either \n or \r\n which will identify line breaks on windows machines as well as non windows machines.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.