In my QT project I am reading values from .ini file using QSettings. If the value contains comma character QSettings is not able to read it. How should I read such values?
How to read a value using QSetting if the value contains comma character
6.6k Views Asked by Vinod At
2
Comma character is treated as list separator by
QSettings
. INI values with commas are parsed as string lists. You can convert a string list back to original string as follows: