eric schmidt
eric schmidt

Reputation: 19

vb.net reading delimited files with text qualifiers

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

Answers (1)

Reed Copsey
Reed Copsey

Reputation: 564433

The TextFieldParser class is intended to handle this directly, provided the text qualifiers are quotation marks (see the HasFieldsEnclosedInQuotes option).

Upvotes: 3

Related Questions