I have data in a database that needs to be exported to CSV. Some of the fields include addresses and such, which include newlines which MUST be preserved. The data is being exported like this (this is sample data of course):
"Bob Smith",38,"Fire Chief","1234 Obscure St.
Random Town, NA, 12345"
Which doesn't show up correctly in Excel, or import correctly with TextFieldParser class. Is it possible to export newlines in CSV files? How?