Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. [solved]Merge two QStringList elements
Forum Updated to NodeBB v4.3 + New Features

[solved]Merge two QStringList elements

Scheduled Pinned Locked Moved General and Desktop
3 Posts 2 Posters 2.9k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    AntonZelenin
    wrote on 29 Aug 2015, 13:07 last edited by AntonZelenin
    #1

    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"

    1 Reply Last reply
    0
    • C Offline
      C Offline
      Chris Kawa
      Lifetime Qt Champion
      wrote on 29 Aug 2015, 14:30 last edited by Chris Kawa
      #2

      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);
      
      A 1 Reply Last reply 29 Aug 2015, 14:59
      1
      • C Chris Kawa
        29 Aug 2015, 14:30

        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);
        
        A Offline
        A Offline
        AntonZelenin
        wrote on 29 Aug 2015, 14:59 last edited by
        #3

        @Chris-Kawa
        Thanks=)

        1 Reply Last reply
        0

        1/3

        29 Aug 2015, 13:07

        • Login

        • Login or register to search.
        1 out of 3
        • First post
          1/3
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved