CSVGetCells Method | |
Line split to cells and remove characters quote sign
Namespace:
SIC.File
Assembly:
SIC (in SIC.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax private static string[] GetCells(
this string pLine,
string pSeparator = ";"
)
<ExtensionAttribute>
Private Shared Function GetCells (
pLine As String,
Optional pSeparator As String = ";"
) As String()
Parameters
- pLine
- Type: SystemString
data record line - pSeparator (Optional)
- Type: SystemString
field separator
Return Value
Type:
String[Missing <returns> documentation for "M:SIC.File.CSV.GetCells(System.String,System.String)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also