Hi,
I have a problem with XML library (Qt DOM class).
My XML result file is like:

Qt Code:
  1. <!DOCTYPE myConfigFile>
  2. <myFileSettings>
  3. <option key="key_name" value="key_value" />
  4. </myFileSettings>
To copy to clipboard, switch view to plain text mode 

How can I handle a value like "key_value1;key_value2;key_value3" ?
Now if I use the semicolon char ";" I obtain a wrong XML file...

Thanks for the help,
the_bis