Append a string array
in
Programming Questions
•
3 months ago
Hello.
I am using a csv table to load in a string array. I want to add a new row every X minutes, and append this row in the array. However, every time I append, the array is staying the same - it just rewrites the last row. Is this wrong?
rows = loadStrings("data.csv");
newData = append(rows, timestamp);
1