Reputation: 19
Is there a set function in vb.net that allows you to read a delimited file with text qualifiers? in the past i have used the split command but that does not allow you to take into account the text qualifiers.
Upvotes: 1
Views: 2991
Reputation: 564433
The TextFieldParser class is intended to handle this directly, provided the text qualifiers are quotation marks (see the HasFieldsEnclosedInQuotes option).
Upvotes: 3