I have a problem with specific Scala code where I found this dividing line. Before I used only dividing lines, for example:
var newLine = line.split(",")
But what does this split mean?
var newLine2 = line.split(",(?=([^\"]*\"[^\"]*\")*[^\"]*$)")
The line I need to split is as follows:
1966, "Green, Green Grass of Home", Tom Jones, 850000
Thanks in advance!
source share