parseCsv(text,firstLineIsHeader)¶
Definition¶
Table parseCsv(String text, Boolean firstLineIsHeader)
Description¶
Given a valid csv string, will parse and returns it as a table. All the columns will be of type String.
Parameter Definition¶
Name | Type | Description |
---|---|---|
text | String | String to parse |
firstLineIsHeader | Boolean | Should the first row be considered the column titles, otherwise columns are automatically labeled: col1,col2,col3,... |