Answers for "convert to qstring"

1

from string to qstring

QString qstr = QString::fromStdString(/*string value*/);
Posted by: Guest on May-26-2021
-2

qstring to string

QString qs;

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

// or this if you're on Windows :-)
std::string current_locale_text = qs.toLocal8Bit().constData();
Posted by: Guest on December-28-2020

Browse Popular Code Answers by Language