You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 28, 2019. It is now read-only.
This is the first 3 lines of my exported Rdio collection:
Name,Artist,Album,Track Number
""Is This My Fate," He Asked Them","Story Of The Year","In The Wake Of Determination","12"
""The Take Over, The Breaks Over"","Fall Out Boy","Infinity On High (Deluxe Edition)","2"
Unfortunately, this isn't valid CSV. You can surround comma-containing strings in double quotes as you've done here, but then you also need to escape double quotes with a "". So I think the correct output would be:
Name,Artist,Album,Track Number
"""Is This My Fate,"" He Asked Them","Story Of The Year","In The Wake Of Determination","12"
"""The Take Over, The Breaks Over""","Fall Out Boy","Infinity On High (Deluxe Edition)","2"
I've confirmed with Golang's CSV parser that this is indeed parseable and valid.
The text was updated successfully, but these errors were encountered:
This is the first 3 lines of my exported Rdio collection:
Unfortunately, this isn't valid CSV. You can surround comma-containing strings in double quotes as you've done here, but then you also need to escape double quotes with a
""
. So I think the correct output would be:I've confirmed with Golang's CSV parser that this is indeed parseable and valid.
The text was updated successfully, but these errors were encountered: