Parses the string to a two dimensional array.
Syntax
'Declaration
Public Shared Function ParseCsv( _
ByVal As System.String, _
ByVal As System.String, _
ByVal columnDelimiter As System.String, _
ByVal As System.String _
) As System.String(,)
'Usage
Dim text As System.String
Dim rowDelimiter As System.String
Dim columnDelimiter As System.String
Dim cellDelimiter As System.String
Dim value() As System.String
value = Worksheet.ParseCsv(text, rowDelimiter, columnDelimiter, cellDelimiter)
public static System.string[,] ParseCsv(
System.string ,
System.string ,
System.string columnDelimiter,
System.string
)
Parameters
- text
- The text to parse.
- rowDelimiter
- The row delimiter.
- columnDelimiter
- The column delimiter.
- cellDelimiter
- The cell delimiter.
See Also