I have a QStringList
with many elements, for example:
sl.at(i) = name:VAR1 size: 8 Decription:fdgag;
how can i split this line into more lines? I want to split line by line into more lines with for-loop.
thats what i have:
for(int i = 0; i != sl.size(); ++i)
{
QString str = sl.at(i);
}
But then I don't know how I can split this...