garysmyth 0 Newbie Poster

I try read values from CSV file using commonCSV parser.

The file has values like this.

Name,Phone,Country,languageknown

gary,423432,USA,[English,spanish,German]

After parsing I iterate, I get value like this,

gary
423432
USA
[English
spanish
German].

But i want like this,

gary
423432
USA
[English,spanish,German]

the braces contain one full string

but it the parser split the string also,,

how to get like this . Any Idea? ..