summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-06-15Rename CSVUtilsTest to CSVParserTestAlessandro Iezzi
2023-06-15Indent some line in pom.xmlAlessandro Iezzi
2023-06-15Add site in pom.xmlAlessandro Iezzi
2023-06-15Change the version of Java compilerAlessandro Iezzi
From 1.7 to 1.8.
2023-06-15Indent some line in pom.xmlAlessandro Iezzi
2023-06-15Add method to change the CSVParser separatorAlessandro Iezzi
2023-06-15Correct the constructor of CSVParserAlessandro Iezzi
2023-06-13Rename CSVUtils in CSVParserAlessandro Iezzi
2023-06-13Update copyrightAlessandro Iezzi
2023-06-13Add buildAsInputStream()Alessandro Iezzi
This method is used when you want to create an in-memory CSV and use that with some CSV parser.
2023-06-13Add CSVBuilderAlessandro Iezzi
2023-06-13Change the license from AGPLv3 to BSD 2-ClauseAlessandro Iezzi
2023-05-02csv-utils 0.0.3v0.0.3Alessandro Iezzi
2023-05-02Skip empty linesAlessandro Iezzi
In case of empty lines (such as a newline at the end of file) will be skiped. The code works also for empty lines in the middle of the file.
2023-05-02csv-utils 0.0.2v0.0.2Alessandro Iezzi
2023-05-02Remove line of code that checks if the row endsAlessandro Iezzi
with a comma I removed the line because, the last columns can be empty. Splitting the string having a row like this: str1;str2; give us an array of strings like this: [0] => "str1" [1] => "str2" [2] => ""
2023-05-02Add unit testsAlessandro Iezzi
2022-05-10Add plugin to install sourcesAlessandro Iezzi
2022-05-10Initial commitv0.0.1Alessandro Iezzi