QString Snippets

From Qt Wiki
Revision as of 16:23, 3 March 2015 by AutoSpider (talk | contribs) (Add "cleanup" tag)
Jump to navigation Jump to search
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

note: This page will contain code snippets of all QString functions

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

  1. include <QTextStream>
  2. 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";
}

}