Code:
Dim filepath As String = Server.MapPath("test_user_pass.csv")
Dim pattern As String = ",(?=(?:[^""]*""[^""]*"")*(?![^""]*""))"
Dim regex As New Regex(pattern)
Dim sr As New StreamReader(File.OpenRead(filepath))
Dim line As String = sr.ReadLine()
Dim
Leave a comment: