Hello,
is there any change, having a String to replace within it all occurence of "[" and "]" ?
This works
Qt Code:
  1. mystring = mystring.replace("[", "") ;
  2. mystring = mystring.replace("]", "") ;
To copy to clipboard, switch view to plain text mode 
but I hope there is the way to do it in one shot; is it there?
thanks.