Vincent Duprez
Vincent Duprez

Reputation: 3882

How to count a particular character in QString Qt

Imagine I have a QString containing this:

"#### some random text ### other info
a line break ## something else"

How would I find out how many hashes are in my QString? In other words how can I get the number 9 out of this string?


answer

Thanks to the answers, Solution was quite simple, overlooked that in the documentation using the count() method, you can pass as argument what you're counting.

Upvotes: 13

Views: 19890

Answers (2)

Vittorio Romeo
Vittorio Romeo

Reputation: 93384

Seems QString has useful counting methods.

https://doc.qt.io/qt-6/qstring.html#count-2

Or you could just loop over every character in the string and increment a variable when you find #.

unsigned int hCount(0);
for(QString::const_iterator itr(str.begin()); itr != str.end(); ++itr)
    if(*itr == '#') ++hCount;

C++11

unsigned int hCount{0}; for(const auto& c : str) if(c == '#') ++hCount;

Upvotes: 3

László Papp
László Papp

Reputation: 53225

You could use this method and pass the # character:

#include <QString>
#include <QDebug>

int main()
{
    // Replace the QStringLiteral macro with QLatin1String if you are using Qt 4.

    QString myString = QStringLiteral("#### some random text ### other info\n \
                                       a line break ## something else");
    qDebug() << myString.count(QLatin1Char('#'));
    return 0;
}

Then with gcc for instance, you can the following command or something similar to see the result.

g++ -I/usr/include/qt -I/usr/include/qt/QtCore -lQt5Core -fPIC main109.cpp && ./a.out

Output will be: 9

As you can see, there is no need for iterating through yourself as the Qt convenience method already does that for you using the internal qt_string_count.

Upvotes: 16

Related Questions