I have a very simple csv sheet. One column is owner name, and one column is their reference ID.
Example of the CSV file content:
Name,Owner ID
123 Test LLC,497
555 Example LLC,485
777 Trythis LLC,541
"Doe, John",349
"Doe, Jane",599
When I Compose-Split by new line:
split(outputs('get_file_content')?['body'],outputs('Compose-new_line'))
My Json outputs does this:
{
"Name": "\"Doe",
"Owner ID\r": " Jane\""
},
I am having trouble due to the comma that is in between the quotes. I have tried many things on the internet as well as chat gpt and have had no luck in the understanding on how this should be performed.
