Hi,

Is there a function in QT to split a QStringList into sections/chunks? For example, I have a QStringList with 100 items. I what to split it into 3. So for example I could get a <QVector QStringLists> with 3 sections: 1 with 33 items, 2 with 33 items, and 3 with 34 items.

I can write a function for that but I was wondering if it's already there. Something like array_split

Thanks,