[solved]Merge two QStringList elements
-
Is there any opportunity to merge two elements of a QStringList?
For example I have list "I", "have", "an", "apple" and i want to make such list: "I have", "an", "apple" -
There's no convenience function for that but it's pretty simple nonetheless:
QString temp = stringList.takeAt(i); temp += stringList.takeAt(i) stringList.insert(i, temp);
or even
stringList[i] += stringList.takeAt(i+1);
-
@Chris-Kawa
Thanks=)