Hello, I am having a QHash. I use the following expression,to check whether a value is there in the QHash::keys() or not. //programme QHash samplehash; QString value = "somevalue"; if(samplehash.contains(value)) // Condition - 1 { //some code }
Sometimes the above conditions matches,sometimes not for the same letters of different case. Can anybody help in this?