I'm having issues with QByteArray
and QString
.
I'm reading a file and stores its information in a QByteArray
. The file is in unicode, so it contains something like: t\0 e\0 s\0 t\0 \0 \0
I'm trying to compare this value to my specified value, but it fails, because in the debugger I see it's not an unicode string.
The code will explain everything:
QByteArray Data; //contains unicode string "t\0 e\0 s\0 t\0 \0 \0"
QString myValue = "test"; //value to compare.
if(Data.contains(myValue))
//do some stuff.
else
//do other stuff.
In the debugger, it shows me that the variable Data
has the value "t\0 e\0 s\0 t\0 \0 \0"
and myValue
has the value "test"
. How can I fix it?
QString myValue = "äöü"
; for example should be avoided at least if the source file it self is not stored in UTF-8. Take a look at wiki.qt.io/Strings_and_encodings_in_Qt for more information. – Winnebago