#Tool

This tools converts a list of values into comma separated string (csv). The list of values should be separated by new line character i.e. every word to be separted by a comma should be present in a separte line.

#Knowledge

CSV is Comma separated Value. In this the values are separated by comma. Usually a csv file is created which contains multiple lines of csv strings. A relational data can be written in csv format where values at same index in each line are considered for the same column. This format is used to transfer the data between systems, storages. CSV files are used to import or export the data from systems. Sometimes first line of CSV file is considered as the column names for rest of the data and if column names are not present then, columns are inferred based on the index of the values while importing the file. Below are examples of csv file.

File with Column names

column1,column2,column3
this,is,first
this,is,second
this,is,third

File without Column names

this,is,first
this,is,second
this,is,third