How to convert QString to const char *
-
You can do this:
@QString myString = "BlaBla"
char* myChar = myString.toStdString().c_str();@Look this link "C++":http://www.cplusplus.com/reference/string/string/c_str/.
BR.
-
-
[quote author="Thanatos.jsse" date="1301106274"]You can do this:
@QString myString = "BlaBla"
char* myChar = myString.toStdString().c_str();@
[/quote]Take care of the lifetime of these variables!
if you have an in parameter, you can do such things, although I would not got the way with std::string:@
void foo(const char*);QSTring text; foo(text.toUtf8().constData());
@
aditionally, check:
- QByteArray toAscii () const
- QByteArray toLatin1 () const
- QByteArray toLocal8Bit () const
It's up to you, which encoding you use.
But all these functions return temporary objects, and calling constData returns the buffer of the temp objects. In the next line of code (when foo() returns) the temp object is destroyed and the buffer gets invalid! -
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.