Hi everybody
I use "FileHandler" to load a csv file and I need to extract the rows and columns.
Can i still use the ".ReadLine" instruction because I believe it is not recommended to use it. Could you tell me where to find examples?
THANKS.
Hi everybody
I use "FileHandler" to load a csv file and I need to extract the rows and columns.
Can i still use the ".ReadLine" instruction because I believe it is not recommended to use it. Could you tell me where to find examples?
THANKS.
CSV - comma separated values format. The various StringUtils libraries include methods for loading and saving CSV files. However these methods have a few drawbacks: - They work with files instead of strings. This is especially problematic if the input is not UTF8 encoded. - As they are...