M
merco
hi
i'm reading a file
Dim sr As StreamReader = New StreamReader(FINI)
Dim AllINI As String = sr.ReadToEnd()
sr.Close()
and the i use split to get the rows.
Dim splitedLine() As String
splitedLine = AllINI.Split(vbCrLf)
I get some extra characters at the top of each "SplitedLIne" line:
the char is VbLf.
How can i use split correctly using more than 1 char separator ?
thanks
i'm reading a file
Dim sr As StreamReader = New StreamReader(FINI)
Dim AllINI As String = sr.ReadToEnd()
sr.Close()
and the i use split to get the rows.
Dim splitedLine() As String
splitedLine = AllINI.Split(vbCrLf)
I get some extra characters at the top of each "SplitedLIne" line:
the char is VbLf.
How can i use split correctly using more than 1 char separator ?
thanks