I am trying to do something like this:

QString string;
// do things...
std::cout << string << std::endl;

but the code doesn't compile. How to output the content of qstring into the console (e.g. for debugging purposes or other reasons)? How to converst QString to std::string?

link|improve this question

feedback

5 Answers

up vote 17 down vote accepted

One of the things you should remember when converting QString to std::string is the fact that QString is UTF-16 encoded while std::string... May have any encodings.

So the best would be either:

QString qs;

// Either this if you use UTF-8 anywhere
std::string utf8_text = qs.toUtf8().constData();

// or this if you on Windows :-)
std::string current_locale_text = qs.toLocal8Bit().constData();

The suggested (accepted) method may work if you specify codec.

See: http://doc.qt.nokia.com/latest/qstring.html#toAscii

link|improve this answer
1  
+1. Thank you Artyom. – augustin Jan 10 '11 at 12:06
This isn't safe & is slightly slower than the proper way. You're accessing the data of a QByteArray created on the stack. The destructor for the QByteArray may be called before the constructor of the STL string. The safest way to create a helper function. static inline std::string toUtf8(const QString& s) { QByteArray sUtf8 = s.toUtf8(); return std::string(sUtf8.constData(), sUtf8.size()); } – Vitali Dec 2 '11 at 2:27
2  
@Vitali not correct. "The destructor for the QByteArray may be called before the constructor of the STL string" is not correct statement: Quoting the standard: 12.2.3 Temporary objects are destroyed as the last step in evaluating the full-expression (1.9) that (lexically) contains the point where they were created. And the full expression there is std::string utf8_text = qs.toUtf8().constData(); So your statement is not correct – Artyom Dec 4 '11 at 13:55
That's true - I was thinking about const char *x = qs.ToUtf8().constData(). Still, isn't it easier to just call qs.toStdString()? – Vitali Dec 6 '11 at 14:36
@Vitali No. That loses non-latin1 characters. Try this: QString s = QString::fromUtf8("árvíztűrő tükörfúrógép ÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP"); std::cout << s.toStdString() << std::endl; std::cout << s.toUtf8().constData() << std::endl;. The first is incorrect, the second is perfect. You need an utf8 terminal to test this. – Notinlist Dec 13 '11 at 22:24
feedback

You can use:

QString qs;
// do things
std::cout << qs.toStdString() << std::endl;

Here's reference documentation for QString.

link|improve this answer
Thanks. It works. – augustin Nov 18 '10 at 11:50
And thank for the link to the documentation. :) – augustin Nov 18 '10 at 12:36
No prob! Good luck with QT! – Pablo Santa Cruz Nov 18 '10 at 12:37
6  
-1 This is very bad method as it looses unicode properties of the string – Artyom Jan 10 '11 at 8:30
feedback

If your ultimate aim is to get debugging messages to the console, you can use qDebug().

You can use like,

qDebug()<<string; which will print the contents to the console.

This way is better than converting it into std::string just for the sake of debugging messages.

link|improve this answer
+1 Thanks. qDebug() might prove handy. – augustin Nov 18 '10 at 12:38
1  
qDebug() would be much better, because it supports more Qt types. – Kamil Klimek Nov 19 '10 at 13:25
feedback
QString qstr;
std::string str = qstr.toStdString();

However, if you're using Qt:

QTextStream out(stdout);
out << qstr;
link|improve this answer
I had tried out << qstr first, before asking, but it didn't compile. It works with qstr.toStdString(), though. – augustin Nov 18 '10 at 12:38
I don't think so. You tried std::cout << qstr, not QTextString(stdout) << qstr; – chris Nov 18 '10 at 12:42
Oh! I see! I'll try that. +1. – augustin Nov 18 '10 at 12:46
feedback

Best thing to do would be to overload operator<< yourself, so that QString can be passed as a type to any library expecting an output-able type.

std::ostream& operator<<(std::ostream& str, const QString& string) {
    return str << string.toStdString();
}
link|improve this answer
Why the down votes, folks? It's an overkill in my case, but who knows, it might be useful (to me or someone else). – augustin Nov 18 '10 at 12:39
+1. thank you . – augustin Nov 18 '10 at 12:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.