I'm sure the solution isn't really complicated, but I cant seem to figure it out.
my_string = '2, "some text", "some more text with comma, foo bar", 42, "", 3, 4, "and some more text, hello"'
Want I would like to have:
['2', 'some text', 'some more text with comma, foo bar', '42, '', '3', '4', 'and some more text, hello']
so the problem is that numbers don't have quotation marks, and there can also be empty strings. Basically I want to comma separate the whole string, but not separate the sentences.