Hello, I must append/insert few stuff in a StringB and then print it out; this my code:
Qt Code:
  1. StringBuilder text = new StringBuilder();
  2. StringBuilder textBefore = new StringBuilder();
  3. while (something) { //do it many times
  4. text.append("something");
  5. textBefore.append("Other");
  6. }
  7.  
  8. String result = text.insert(1, textBefore.toString()).toString();
To copy to clipboard, switch view to plain text mode 
Now, I'm looking for a better solution, ie. using just one StringB is it possible for you?
thanks.