How to split a string while being read from a .csv file having both Delimeters and Enclosures in the string? For example- If a string structure is like this :
John Parker , "#30, Park street", California
This string should be splitted like
John Parker
#30,Park Street
California
And not like
John Parker
#30
Park Street
California
That means, the delimeters inside the quotes(enclosures) must be neglected. Please reply if anybody has the solution..........Its urgent.
John Parker , "#30, Park street", California
This string should be splitted like
John Parker
#30,Park Street
California
And not like
John Parker
#30
Park Street
California
That means, the delimeters inside the quotes(enclosures) must be neglected. Please reply if anybody has the solution..........Its urgent.