Hi all
can I get the total number of rows in a csv file?
Thanks 🙂
Going by the standard format, new rows are separated by newlines. So, simply use [man]file/man to read the file into an array, with each line being a new array entity, and use [man]count/man on the array to find out how many array items there are.
Like it thank you 🙂