Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
10k views

How to convert QString to std::string?

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 ...
4
votes
1answer
734 views

How to deal with “%1” in the argument of QString::arg()?

Everybody loves QString("Put something here %1 and here %2") .arg(replacement1) .arg(replacement2); but things get itchy as soon as you have the faintest chance that replacement1 actually ...
4
votes
2answers
338 views

Should non-QObject derived classes “always” be put on the stack?

Coming from the Symbian world, I'm used to using the heap as much as possible to avoid running out of stack space, especially when handling descriptors. CBase derived classes were always dynamically ...
4
votes
6answers
2k views

Decoding printf statements in C (Printf Primer)

I'm working on bringing some old code from 1998 up to the 21st century. One of the first steps in the process is converting the printf statements to QString variables. No matter how many times I ...
3
votes
2answers
85 views

How to specify a unicode character using QString?

How can I specify a unicode character by code (such as "4FF0") using QString? I tried QString s("\u4FF0"); but it only outputs a question mark. Any idea how to do this? Edit: It works that way, but ...
3
votes
2answers
318 views

Format a Number to a specific QString format

I have a question about formatting a decimal number to a certain QString format. Basically, I have an input box in my program that can take any values. I want it to translate the value in this box ...
3
votes
1answer
92 views

Output QVector3D to QString

I was surprised to learn that QVector3D does not have a built-in way of outputting the x, y, and z coordinates as a QString. I can write a simple function to do this, but I was wondering if there was ...
3
votes
2answers
222 views

Qt: How to subtract two QSet of QString in case insensitivity mode

I'm working on a logical problem using Qt. I've got two QSets of QString: QSet<QString> set1: [ "aaa", "BBB" ] QSet<QString> set2: [ "aaa", "bbb", "ccc", "ddd" ] I want to subtract set1 ...
3
votes
2answers
231 views

What would be a QString replacement?

For many reasons (low performance, high resource consumption, large shared library size, large executable sizes, and our low end platform) my team consider moving out of Qt. As a part of this we ...
3
votes
2answers
1k views

QChar to wchar_t

I need to convert a QChar to a wchar_t I've tried the following: #include <cstdlib> #include <QtGui/QApplication> #include <iostream> using namespace std; int main(int argc, ...
3
votes
1answer
765 views

Question about a QList<QStringList> in Qt

I'm using Qt 4.5 and im working with a QList<QStringList> which is a list of string list. Now I want to replace one string inside one stringList but with it seems unusual to type. I have found ...
3
votes
5answers
1k views

Qt UI for existing C++ project

I have already written a C++ program and I would like to write a GUI for it. I realize Qt is a wonderful tool, however, Qt has it's own classes, which make me quite confused. eg: instead of String, Qt ...
2
votes
2answers
101 views

QString and german umlauts

I am working with C++ and QT and have a problem with german umlauts. I have a QString like "wir sind müde" and want to change it to "wir sind m&uuml;de" in order to show it correctly in a ...
2
votes
1answer
181 views

Is is possible to pass a QString to a QMessageBox?

I'm working on QT application where the user will enter their information into several QLineEdits. They then will click son a Submit button. I would like a QMessageBox to appear asking if they would ...
2
votes
2answers
241 views

Using both std::string and QString interchangeably

I use Qt extensively in a software system I'm working on for graphical and GUI components. However, for most internal algorithms and processing of data Qt plays a smaller role. I'll often run into ...
2
votes
2answers
301 views

QString errors when copying into QMap. Scope issue?

I'm currently stuck with regards to segfaults (sometimes sigabrts due to bad mallocs) whenever I try add a QString to a QMap as key inside the destructor of QWidget class I have - I think it has ...
2
votes
3answers
351 views

Class that inherits std::ostream and operator<< for QString

Hell ! I'm trying to make a class that would help me with outputting text to stdout ... Anyway, everything is working, except for one thing. Let's say that I've create object of my class called out. ...
2
votes
3answers
816 views

How can I print a QString containing a special character with python using PyQt?

I do not managed to simply print a QString variable containing a special character. I always get a UnicodeEncodeError: 'ascii' codec can't encode characters in position .... Here is the code ...
2
votes
2answers
1k views

Parse and remove part of a QString

I want to parse some kind (or pure) XML code from a QString. My QString is like: <a>cat</a>My cat is very nice. I want to obtain 2 strings: cat, and My Cat is very nice. I think a ...
1
vote
3answers
84 views

How to convert a pointer value to QString?

for debug purposes I often output pointer values (mostly this) to qDebug: qDebug("pointer of current object = 0x%08x",this);, using "%08x" as format string and simply passing this as a parameter. ...
1
vote
1answer
39 views

Using Qstring::toDouble To check data

I'm trying to validate user input by using the QString::toDouble() function. The documentation says the function should be used like this: double QString::toDouble ( bool * ok = 0 ) const; /* ...
1
vote
2answers
53 views

Removing whitespaces inside a string

I have a string lots\t of\nwhitespace\r\n which i have simplified but i still need to get rid of the other spaces in the string. QString str = " lots\t of\nwhitespace\r\n "; str = ...
1
vote
3answers
67 views

restore runtime unicode strings

I'm building an application that receives runtime strings with encoded unicode via tcp, an example string would be "\u7cfb\u8eca\u4e21\uff1a\u6771\u5317 ...". I have the following but unfortunately I ...
1
vote
2answers
105 views

Memory issues with QTextEdit

I'm trying to use a QTextEdit to output a QstringList e.g void CTextBox::AddText(QStringList list, QStringList animList) { //CGraphics* graphics = CGraphics::GetInst(); //QStandardItem ...
1
vote
1answer
99 views

Convert WCHAR to QString in Qt

Convert WCHAR to QString in Qt. Please help me to implement it to complete this convertion.
1
vote
3answers
291 views

contains(regexp) on what is possibly a Qstring/string in QML

I have a code snippet in QML which should look for the regexp "Calling" in screen.text, and if it is not found, only then does it change the screen.text.Unfortunately, the documentation is not clear ...
1
vote
0answers
77 views

Issues with QString and debugging in Qt development

I'm using DOM model to generate XML. When I have the DOM tree ready and try to output XML via return domDocument.toString(4);, it only gives me the first 255 characters. I've tried with ...
1
vote
1answer
24 views

Object back from pointer

void show(QString *s){ //Here I want to show the value of the QString. } How can I do that?? I'd be glad if you could help me.
1
vote
1answer
241 views

Convert QString Unix epoch time to QString standard time

I need an elegant C++ function that takes a QString parameter containing the unix time (e.g. 1295874681) and converts it into standard time format (e.g Mon, 24 Jan 2011 13:11:21 GMT) containing ...
1
vote
1answer
2k views

Convert std::string to QString

I've got an std::string content that I know contains UTF-8 data. I want to convert it to a QString. How do I do that, avoiding the from-ASCII conversion in Qt?
1
vote
1answer
224 views

How to write a QString on several lines?

Do you have a better way to do that ? QString str("I am a long long long" + QString("long long long") + QString("long QString") ); I don't like all this QString.
1
vote
2answers
338 views

How to convert from BYTE* to QString?

I have a DATA_BLOB structure but I need to convert it to QString. How can I do this?
1
vote
2answers
1k views

Qt QString cloning Segmentation Fault

I'm building my first Qt app using Qt Creator, and everything was going fine until I started getting a strange SIGSEGV from a line apparently harmless. This is the error: Program received signal ...
1
vote
2answers
1k views

Python/PyQT QString won't insert into MySQL database

I am trying to trying to retrieve some values from a user using a QLineEdit widget. When a QPushButton raises a clicked event, I want the text to be retrieved from all QLineEdit widgets and stored in ...
0
votes
1answer
40 views

How to read string as XML with QDomDocument object in QT

I am receiving string as a XML document with this function: void HttpWindow::replyFinished(QNetworkReply *reply) { QString data = reply->readAll().trimmed(); bool ...
0
votes
1answer
19 views

Regular Expression for text in between tags

I have a QString that I need to parse. This QString is a QNetworkReply object obtained from an URL. <label id='Today_LastSale1'>$&nbsp;21.2401</label> I need the value ...
0
votes
1answer
28 views

QDateTime to QString with milliseconds in Qt3

Is there a way in Qt3 to convert QDateTime into a QString and back to QDateTime, so that eventually QDateTime will contain information about milliseconds? Thanks.
0
votes
2answers
34 views

Displaying integer and float numbers in a QPlainTextEdit object

I want to display a numerical value in a QPlainTextEdit object. I use below code for this purpose. QString s; s.sprintf("%d", deneme); //deneme is an integer value. ...
0
votes
1answer
38 views

What should QString::contains(QRegExp) return? May I use position meta-characters within the RegExp?

I'm trying to detect if my input is a URL or a plain file path. I'm simply checking for http:// or www within the string, and that's enough for me. So, I'm trying QString::contains(QRegExp) and I'm ...
0
votes
2answers
66 views

QString splitting multiple delimiters

I'm having trouble splitting a QString properly. Unless I'm mistaken, for multiple delimiters I need a regex, and I can't seem to figure out an expression as I'm quite new to them. the string is text ...
0
votes
2answers
61 views

Appending number to QString with arg() , is there better ways?

I've been using QString::number () to convert numbers to string for long time , now i'm wondering if there's something better than following: int i = 0; QString msg = QString ("Loading %1").arg ...
0
votes
2answers
128 views

QDateTime::fromString not accepting my QString?

I have a .txt file which is filled with lines like this below: 2011-03-03 03.33.13.222 4 2000 Information BUSINESS ...etc blabla 2011-03-03 03.33.13.333 4 2000 Information BUSINESS ...etc ...
0
votes
2answers
232 views

Qt. get part of QString

everybody. I want to get QString from another QString, when I know necessary indexes. Fo example: Main string: "This is a string". I want to create new QString from first 5 symbols and get "This ". ...
0
votes
1answer
162 views

QtCreator 2.3--Lost ability to see QString contents in debugger

So I recently upgraded to QtCreator 2.3 (and want to keep it for its QtQuick support) and initially debugger performance slowed to an unusable crawl (though I could still see QString contents). ...
0
votes
1answer
94 views

Is there a Qt function to (un-)escape (at least) the ASCII formatting characters (d 0..31) in a QString?

I don't like reinventing the wheel and this seemed like a pretty basic function. The same concept as these two questions except specifically for QStrings? QRegExp has an escape function so I'm ...
0
votes
1answer
181 views

Convert QString or QUrl to Unicode

I want to convert a part of QUrl to Unicode. I have a given URL, www.ÄSDF.de and want to convert it to www.%C4SDF.de. How can I do that in Qt? When I use the method QUrl::toEncoded() I always get ...
0
votes
2answers
146 views

How to convert TBuf8 to QString

I've tried to convert using the following code: template< unsigned int size > static QString TBuf82QString( const TBuf8< size > &buf ) { return QString::fromUtf16( ...
0
votes
4answers
327 views

Concatenating two QStrings with an integer

I want to do something like this in C++ using Qt: int i = 5; QString directory = ":/karim/pic" + i + ".jpg"; where + means I want to concatenate the strings and the integer (that is, directory ...
0
votes
1answer
146 views

convert json array of hashes to Qt list of QHashes

I have a QString of JSON-encoded dictionaries. Is there a simple way to convert them to a list of QHashes? I've looked at this post Best JSON parser for Qt?, but haven't been able to get a valid ...
0
votes
2answers
491 views

Get plain text from QString with HTML tags

I have QString with html tags. Why can i get plain text from this string?

1 2