I'm trying to parse through tweets which are stored in a column called "text" in a .csv file. I want to use regex, TweetTokenizer, etc., but that all requires that the text be in string form (as far as I understand).
I saw this post:
Parsing a tweet inside a csv column in Python
but for me, the code is too specific to finding hashtags. I do want to do that, but does anyone know how to more generally turn the text in that "text" column into strings so I can parse?
Thanks, punpun