Parsing .csv and .txt files in FPMI

Travis,
Thank you, this is a great start. However, how can I have the code ignore commas that are in text surrounded by quotes (like in an address line, for instance)?

Right now, the line:
“One, two”,“Two, three”,“Three, four”
gets split into:
num1 = “One
num2 = two”
num3 = "Two

where I’d like it to be:
num1 = One, two
num2 = Two, three
num3 = Three, four

Any suggestions?
Cas