I am considering parsing a delimited string, something of the order
a B C
But this is a very simple example, and delimiting delimited data can be difficult; eg
1, "Your simple algorithm, it does not work," True
will hit your naiive string.Split implementation in bits. Is there anything that I can freely use / steal / copy and paste that offers a relatively bulletproof solution for delimited text parsing? .NET, plox.
Update: I decided to go with TextFieldParser , which is part of a bunch of VB.NET pros hidden in Microsoft.VisualBasic. Dll.
source
share