CSVReader » setDelimeter
Set the delimeter character that the CSV Reader object uses to read the connected csv file.
js
csv.setDelimeter(delim);
Parameters
delim
- String of the character to be used delimeting the csv file.
Example
js
let csv = datasource.csvRead("example_file.csv", 0);
csv.setDelimeter(", ");
This will set the delimeter character to a ,
.