Search code examples
c++qtstring-comparisonqstring

How to Compare two Qstrings?


I have to compare two Qstrings in qt,

say,

Qstring str1="1005",str2="1006";

I have tried using ,

if(str1==str2){
   return true;
}

&

if(str1.compare(str2)==0)
{
    return true;
}

still both methods goes inside if condition & returns true.


Solution

  • It worked after Rebuilding the Project , I think this is the problem with QT CREATOR