Thursday, March 10, 2016

Reading CSV file

Reading a CSV file is not very difficult but why reinvent the wheel? The easiest way to parse CSV file in dot net is use VB class named Microsoft.VisualBasic.FileIO.TextFieldParser



Detailed Info: http://stackoverflow.com/questions/3507498/reading-csv-file

No comments:

Regex Email validation in c# dot net core

 Use this regex /^_?[a-zA-Z0-9]([a-zA-Z0-9]*[._+-])*[a-zA-Z0-9_]+@(?!-)[A-Za-z0-9-]{1,63}(?<!-)(\.(?!-)[A-Za-z0-9-]{1,63}(?<!-))*\.[A-...