Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
26 lines (20 loc) · 537 Bytes

CSVReader.readAllLines.md

File metadata and controls

26 lines (20 loc) · 537 Bytes

CSVReader.readAllLines

The function to read all lines into a matrix of arrays.

Sample

	//The content of the test.csv file is 
	//"A,B,C,D
	// 1,2,3,4
	// a,b,c,d"
	var csvReader = new CSVReader("input/test.txt", ",", "\"", "MS932");
	var array = csvReader.readAllLines();	
//The array return value is
//["A","B","C","D"],
//["1","2","3","4"],
//["a","b","c","d"]

API

CallingReturning
CSVReader . readAllLines()Array