QString Snippets

From Qt Wiki
Revision as of 12:43, 25 February 2015 by Maintenance script (talk | contribs)
Jump to navigation Jump to search

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";
}

}