If you have ever done any programming for rs232 for modems or any serial devices then you must have this program:
http://www.hhdsoftware.com/sermon.html
It is a lifesaver.
After much searching, this is the best RegEx I can find for splitting a line of text from a CSV file:(?:^|,)(\"(?:[^\"]+|\"... I found it here: http://thedotnet.com/howto/... Here is the magical working code: protected virtual string[] SplitCSV(string line) { System.Text.RegularExpressi... options = ((System.Text.RegularExpres... | System.Text.RegularExpressi... | System.Text.RegularExpressi... ......