QString Snippets

From Qt Wiki
Revision as of 22:18, 28 June 2015 by Wieland (talk | contribs) (Cleanup)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

Note: This page will contain code snippets of all QString functions.

QString::endsWith() Returns true if the string ends with s; otherwise returns false.

#include <QTextStream>
#include <QString>

int main()
{
    QTextStream out(stdout);
    QString* string = new QString("example-0.0.1.tar.gz");
    if (string->endsWith(".tar.gz") == true) {
        out << "True\n";
    } else {
        out << "False\n";
    }
    return 0;
}