Search:

Type: Posts; User: Edgemeal

Search: Search took 0.20 seconds.

  1. VS 2010 Re: File read CSV format and write new file with one word in one line

    One more try,



    Dim lines = TextBox1.Lines

    Dim results As New List(Of String)
    For Each line In lines
    If line.Length > 0 Then
    Dim opt = line.Split("|"c)(1)
  2. VS 2010 Re: File read CSV format and write new file with one word in one line

    Maybe something like?...



    Dim lines = TextBox1.Lines

    Dim results As New List(Of String)
    For Each line In lines
    Dim items = line.Split({"/", "|"}, StringSplitOptions.RemoveEmptyEntries)...
Results 1 to 2 of 2



Click Here to Expand Forum to Full Width