I am a newbie to QT and at the moment struggling with "read and write CSV file from QT" I have 4 questions with it. I have read the link of Parsing through a csv file in Qt, but doesn't really answer my questions.
Suppose i have the CSV file as:
1,2,3,
4,5,6,
7,8,9,
10,11,12,
13,14,15,
16,17,18,
- how do you display number "5" in qDebug?
- how to read number "7", "8", "9" at the same time?
- how to replace number "12" with "50"?
- how to replace number "13", "14", "15" with, "73", "74", "75"?
- and how to add a new line after number"18"?
Thank you very very much for your help! ^_^