September 2004 Entries

Debugging Serial communications

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/... It is a lifesaver
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

RegEx for CSV

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.RegularExpressi....IgnorePatternWhitespace | System.Text.RegularExpressi....Multiline) | System.Text.RegularExpressi....IgnoreCase);...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati