How to convert QString to const char *
-
Why should the be no way? I showed you some...
it is, but which format do you need?
- utf8?
- 7-bit ASCII?
- 8-bit ASCI with with regional code?
- MBCS?
all are const char* formats.
QString is unicode.in general, it is possible:
@
QString text;
std::string s = text.toLatin1().constData;
foo(s.c_str());
@If you really need a const char* I would convert it to and std::string (but reagrd the conversion!) and use the std::string. Who shall otherwise handle the memory? who shall allocate it? who shall free it?
you can also do the following:
@
QString text;chat* p = new char[text.length() + 1); strcpy(p, text.toLatin1().constData());
@
Take care that text.length() might not valid if you then convert to utf8!
-
[quote author="Gerolf" date="1301125342"]
Take care of the lifetime of these variables![/quote]Ok Gerolf, I'll take care in the following contributions.
Thanks.
-
-
i want to type cast QByteArray to a QString
@
QByteArray myAppString[4096] ;
QString myString ;
@
now i have some data in myAppstring now i want it to convert in QString
so i have QString Constructor no 9 - which take const ByteArray
but it is now working
@
QString *str1 = new QString(myAppString) ;
@
it give me erroris there any way to do conversion of Qbytearray to QString
-
QString Constructor No 9 (which takes a QByteArray) uses UTF-8, so you need to ensure that your byte array uses that encoding. It is better to use QString's static methods fromLatin1, fromLocal8Bit and fromUtf8 IMO because they are more explicit.
You can check "the documentation":http://qt-project.org/doc/qt-5.0/qtcore/qstring.html for more detailed explanation.
And I'd also like to recommend some "good reading on character encoding":http://www.joelonsoftware.com/articles/Unicode.html if you're not already familiar with its concept.
-
This can be used for eg. to send debugging information from your GUI to the console; since Debug requires a const char * :
QString str = ui->lineEdit->text(); // lineEdit was already defined in a suitable context!
Debug(&str.toStdString()[0]);Hope it worked!
-
qPrintable is the best way
-
Just QString.c_str() it works for me.