How to get value from key with space ?
Code:
conf->beginGroup("lambung"); qDebug() << conf->value("milik saya", "").toString() conf->endGroup(); //result ""
I just get empty string. If I get the all keys, the key will visible
Code:
conf->beginGroup("lambung"); qDebug() << conf->childKeys(); conf->endGroup(); //result ("milik saya", "milik kamu", "milik dia")