A QString is a class in Qt library which implements character strings.
1
vote
2answers
55 views
How to convert QString to int?
I have a QString in my sources.
So I need to convert it to integer without "Kb".
I tried Abcd.toInt() but it does not work.
QString Abcd = "123.5 Kb"
0
votes
1answer
21 views
QComboBox.currentText() — PySide vs PyQt4
I've got a python script using PySide and it works fine.
But then I thought to check if it gonna work with PyQt4.
And after changing the import strings to PyQt4, things went wrong.
The error points to ...
0
votes
0answers
17 views
qt error when install qtstalker
im trying to install qtstalker(the stock charting tool) on Ubuntu 12.10 by following the instructions on this page, ...
0
votes
1answer
16 views
C++ Qt QTableWidgetItem causes crash
I have a QTableWidget called tw_topic. It's not empty. In another function I need the text of the items.
Code :
for(int i = ui->tw_topic->rowCount(); i >= 0; i--)
{
//should return the ...
-1
votes
2answers
43 views
Why can't I use QString::arg function here?
You know that everywhere you need a QString object as a parameter you can use just c style strings . For example showMessage function needs QString. But I passed a C-style string to this function and ...
1
vote
2answers
59 views
C++ Qt return empty QString
I made a function which returns a QString. At some points in my function it should return an empty QString.
Just returning "" doesn't work.When I use QString::isEmpty() it's not.
My "emergency plan" ...
5
votes
2answers
117 views
Operator << for QString
It makes sense to implement << for QString like:
std::ostream& operator <<(std::ostream &stream,const QString &str)
{
stream << str.toAscii().constData(); //or: ...
0
votes
2answers
73 views
insert a content of integers array to the vector of QString
I want to insert the content of array of integers :
int arr[n] to the vector of QStrings. std::vector<QString> vQString.- I can do it by inserting the array`s elements one by one :
...
1
vote
1answer
41 views
Format of float to QString conversion
I would like to convert a float to a QString but replacing the . by a ,.
For example, I want the float 12.95 to be converted to a QString that looks like 12,95.
I guess I can do it with something ...
1
vote
1answer
49 views
QString bad display
I'm quite new to Qt and I've a problem that I've never seen before : when I update the text of a QLabel the QString change of value juste before the assignation.
Here's my code :
dom.cpp
if ...
1
vote
1answer
50 views
Writing XML code using QXmlStreamWriter
How can I Write a XML text inside a XML?
QXmlStreamWriter xmlWriter(&file);
(...)
QString xmlCode = "This is a <b>XML</b> code. And should be written as is it";
...
3
votes
1answer
78 views
QString's in QVector memory leak
Why when I fill the QVector as follows:
QVector< QPair<qint32, QString> > vector(10000000);
QString temp;
for (int i = 0; i < 10000000; ++i)
{
temp = QString::fromUtf8("Vasya");
...
1
vote
1answer
60 views
Proper usage/modification of QString given that some functions are const and others non-const
I am performing some operations on a QString to trim it down, but I don't want to affect the original string. I am new to Qt and am confused about the proper way to use the various QString functions, ...
1
vote
2answers
42 views
QVector: no match for 'operator+'
I am passing a QVector from one window to another, I want to append the value present in QVector from previous window to a QString in present window. I get the error when I perform the addition no ...
0
votes
1answer
54 views
Static QString initialization fail
sorry for my creepy english.
In Qt 4.8.4 I'm try to create singleton class with static QString field. It cannot be const, because this field will change value at runtime. Initialization this field ...
0
votes
1answer
27 views
unable to assign QQuickText to QString
I am trying to dynamically create objects in qml-javascript.The function which creates the object is:
function createSpriteObjects(xPos,yPos,cnt,imgsrc,jsonObject) {
var title;
title = ...
2
votes
2answers
129 views
How to make a QString from a QTextStream?
Will this work?
QString bozo;
QFile filevar("sometextfile.txt");
QTextStream in(&filevar);
while(!in.atEnd()) {
QString line = in.readLine();
bozo = bozo + line;
}
filevar.close();
...
1
vote
1answer
25 views
how to get the list of files without their extensions in a specified directory in Qt
i want to get all the files that are located in a specified directory but without their extensions at the end .I did this
Qt Code:
QDir myDir(mConfigDirectory);
filters << "*.ini";
...
1
vote
2answers
52 views
How to append a Qstring using “%” operand
I am trying to .append my QString with two double values using the % operand. I saw the following example in the QString class reference documentation for using arg with double, but the example ...
1
vote
1answer
48 views
QString to Const Char*
I'm trying to use the data from a function that returns a QString in a Const function that uses a Const Char*. The problem is basically the following :
int myObject::listChildProcesses([...]) const {
...
0
votes
1answer
27 views
how to use qstring as char array
I am trying to write a function which finds out is this word georgian or not. I wrote it for latin characters and it worked. now i am trying to change it to read a QString char by char and compare to ...
0
votes
2answers
48 views
Qt QPixmap constructing with qstring filename
I need to initialize a qpixmap object with its file directory
It works if I do the following:
image = new ...
0
votes
0answers
13 views
How to write a QString compatible class?
I would like to write a QString compatible class for use in a lib that can't have a QT dependency however I would also like to use the same lib in Qt projects. I'm thinking that if I write a class ...
1
vote
1answer
50 views
QString and stdstring combination doesnt work in std::stringstream - compile error
```
#include <iostream>
#include <sstream>
#include <QString>
class Printer {
public:
inline std::ostream& operator<<(const std::string& str) {
stream << ...
2
votes
2answers
142 views
Qt QString from string - Strange letters
Whenever I try to convert a std::string into a QString with this letter in it ('ß'), the QString will turn into something like "Ã" or some other really strange letters. What's wrong? I used this code ...
0
votes
0answers
51 views
QString Remove numbers not associated with letters
I am looking for a way to remove all numbers and letters in brackets, as well as numbers not associated with a letter (i.e. I want to keep 'v2' or 'vol.2').
For instance:
"My Notes v02 003 (2009) ...
0
votes
1answer
41 views
QTestLib results different from program output
I have some simple code that reverses a QString.
const QString reverse_qstring(const QString& str_in)
{
QString out;
Q_FOREACH(const QChar c, str_in) {
out.push_front(c);
}
...
1
vote
1answer
61 views
Conversion from QString* to QString&
I'm confused about using pointers and references and I'm facing a little problem.
I got a function :
bool myObject::isFlag( QString &pArgument) const { }
And I'm using it with :
...
0
votes
0answers
16 views
tr(“ ”).arg Broken Characters Issue
I'm trying to make a multi-language program and I have a big problem about translating there it is :
tabs->setTabText(tabs->indexOf(tab1),tr("ŞŞT %1 %2").arg(5).arg("Batuhan"));
that's what ...
1
vote
1answer
55 views
Count QString arguments
Do you know how to get the count of possible arguments in a QString?
I want to do something like:
int argumentCount = countArguments(QString("This is the %1 argument, this is the %2 one")`);
where ...
2
votes
2answers
148 views
Qt ActiveX dynamicCall return value always empty
This is a follow up to a previous question: Qt ActiveX
I am trying to use an ActiveX control in my program.
QAxWidget* mAX = new QAxWidget();
...
0
votes
1answer
99 views
Qt - Converting QString to Indices of QByteArray - Dividing device ID into 3 indices
I am using QtSerialPort to send serial messages across a COM port to an INSTEON PowerLinc 2413U Modem. I can hardcode and send messages just find, however I need to send the same message using ...
0
votes
2answers
38 views
Place subscripts in a QString
I'm having a difficult time finding how to insert subscripts into a QString. I know it can be done with style sheets, but I can't really use a style sheet in places where I place a QString. I've ...
2
votes
1answer
196 views
How to highlight a string of text within a QTextEdit
I'm a student programmer currently developing an application for work using Qt4. I am building an equation editor and I'm having issues attempting to highlight a string within my QTextEdit field. I ...
-1
votes
1answer
74 views
ofstream writing data to file: How do I pass a previously defined string as the filename
I have a program that I have written with C++, OpenCV and Qt, where I am trying to write data to a csv file. In my Qt Widget I have created a QFileDialog that allows me to choose where to save the csv ...
0
votes
3answers
111 views
Best way to convert std::wstring <->QString
I'm currently working on a larger project, where the "logic" is implemented in standard C++ with all strings being handled with std::wstring and the UI part is implemented using Qt and thus ...
0
votes
1answer
45 views
QString select lines range
I have a huge QString (a big logfile), how do I select line 10 to line 20 for instance?
Something like
QString tenLines = bigHugeQstring.linesRange(10,20);
is it possible?
0
votes
1answer
63 views
Mysterious behaviour when trying to use the std::ostream streaming operator with QString
I accidently tried to stream a QString with std::ostream. However, compilation (Windows SDK 7.1) succeeded, but put a warning:
Warning:C4717: 'operator<<' : recursive on all control paths, ...
0
votes
2answers
64 views
Adding constant to QString
I have the following:
#define versions 0.9.0
and I want to add to QString:
QString str = QString("Software version %1").arg(versions);
this won't work. anyone know why?
thanks
0
votes
2answers
271 views
Char to QString
I have a char array and want to convert one of the values from char to qstring:
unsigned char inBuffer[64];
....
QString str= QString(*inBuffer[1]);
ui->counter->setText(str);
This isn't ...
0
votes
3answers
112 views
How can I convert a QString of numbers to an array of int?
I have a QString containing a series of numbers for example
QString path = "11100332001 234 554 9394";
I want to iterate over the variable length string
for (int i=0; i<path.length(); i++){
}
...
0
votes
1answer
161 views
How to pass a QString to a Qt slot from a QMenu via QSignalMapper or otherwise
I have a QMenu with many submenus. These are dynamically created i.e. the names menus come from a db and created in a loop. Now i wanted to fire the same slot triggered() or similar when a menu is ...
0
votes
0answers
69 views
Qt QProcess strange error
I am getting a strange error on trying to execute a binary with a QProcess:
QString program = QString::fromUtf8("../helper-functions/Perl/DiscoverNodes");
QProcess *myprocess = new ...
1
vote
4answers
192 views
How to remove accents / diacritic marks from a string in Qt?
How to remove diacritic marks from a string in Qt. For example, this:
QString test = QString::fromUtf8("éçàÖœ");
qDebug() << StringUtil::removeAccents(test);
should output:
ecaOoe
0
votes
1answer
60 views
Get QString length (in characters, not bytes)
I need to get the actual character count (not byte count), similar to what is output when getting string length in V8.
This is necessary for use with Twitter, which goes by character count no matter ...
0
votes
1answer
123 views
QString with special characters to const char*
I m trying to convert QString with special characters to const char* but I did not succeed. my function is:
void class::func(const QString& Name) // fileName = "â.tmp"
{
qDebug()<< ...
0
votes
1answer
60 views
QString encoding with special character
I m trying to convert QString with special character to const char but I did not succeed.
my function is:
void class::func(const QString& fileName) // fileName = "â.tmp"
{
qDebug()<< ...
0
votes
3answers
100 views
Is there a way to increment QString?
Is there a way to increment a QString in C++- something like:
QString str("a");
str++;
qDebug()<<a; //Here i want letter "b"
EDIT: Yes, basically i want to increment a one letter but ...
1
vote
1answer
101 views
QT split QString with split index
I need to split a qstring into two strings but knowing only the index of the splitter charachter. Here's an exaple
input:
PineApple
3
Output:
Pine // 'e' has index 3, so it is the splitter char ...
0
votes
2answers
124 views
Display japanese string in qt and qml
I have a QString which contains a japanese string. But while debugging its just showing "???" in place of string. I need it to display it in qml. I have used QtextCodec but didnt work for me. Please ...






