I'm trying to successfully extract a column in a CSV file that has text like the following:
2999,29383,Here is some text,"None",2016-03-18 13:26:42,"Jackson: "Hai"
Jason: "Thx bby bai"
#Living"
I am trying to extract the final column that begins with Jackson. As you can see, the text contains quotation marks that start at Jackson and then are supposed to end at #Living, which delineate the beginning and ending of that column, but the problem is that the text also has quotation marks within that column. This is leading to csv.reader to interpret these statements as new lines. There is a number of different times this happens within the CSV file so I would need help fixing all of those potential problems as well.