Qt入门-字符串类QString

原地址:http://blog.csdn.net/xgbing/article/details/7770854

QString是Unicode字符的集合,它是Qt API中使用的字符串类。

QString的成员是QChar,QChar是一个16位Unicode字符类。大多数编译器把它看作是一个unsigned short。

QString和C标准中的字符串不同,它不以'\0'结尾,相反,QString可以嵌入'\0'/字符。

(1)QString初始化。

  1. QString str("Hello");
  2. QString str = "Hello";
  3. static const QChar data[4] = { 0x0055, 0x006e, 0x10e3, 0x03a3 };
  4. QString str(data, 4);
  5. QString str;
  6. str.resize(4);
  7. str[0] = QChar('U');
  8. str[1] = QChar('n');
  9. str[2] = QChar(0x10e3);
  10. str[3] = QChar(0x03a3);
  11. QString str;
  12. str.sprintf("%s %.3f", "float", 3.1415926);
  13. //str结果是"float 3.14"
  14. QString str;
  15. str.setNum(10);  //str = "10"
  16. str.setNum(10, 16); //str = "a"
  17. str.setNum(10.12345); //str = "10.12345"
  18. QString i;           // current file's number
  19. QString total;       // number of files to process
  20. QString fileName;    // current file's name
  21. QString status = QString("Processing file %1 of %2: %3")
  22. .arg(i).arg(total).arg(fileName);

(2)字符串转换

  1. long    toLong ( bool * ok = 0, int base = 10 ) const
  2. qlonglong   toLongLong ( bool * ok = 0, int base = 10 ) const
  3. short   toShort ( bool * ok = 0, int base = 10 ) const
  4. double  toDouble ( bool * ok = 0 ) const
  5. float   toFloat ( bool * ok = 0 ) const
  6. uint    toUInt ( bool * ok = 0, int base = 10 ) const
  7. ulong   toULong ( bool * ok = 0, int base = 10 ) const
  8. qulonglong  toULongLong ( bool * ok = 0, int base = 10 ) const
  9. ushort  toUShort ( bool * ok = 0, int base = 10 ) const

参数ok结果说明转换是否成功。
示例:

  1. QString str;
  2. bool ok;
  3. double d = str.toDouble(&ok);
  4. if(ok)
  5. {
  6. cout << str << endl;
  7. } else
  8. {
  9. cout << "error." << endl;
  10. }

(3)字符串比较

  1. int compare ( const QString & other ) const
  2. int compare ( const QString & other, Qt::CaseSensitivity cs ) const
  3. int compare ( const QLatin1String & other, Qt::CaseSensitivity cs = Qt::CaseSensitive ) const
  4. int compare ( const QStringRef & ref, Qt::CaseSensitivity cs = Qt::CaseSensitive ) const
  1. QString().isNull();               // returns true
  2. QString().isEmpty();              // returns true
  3. QString("").isNull();             // returns false
  4. QString("").isEmpty();            // returns true
  5. QString("abc").isNull();          // returns false
  6. QString("abc").isEmpty();         // returns false

(4)字符串处理

QStringleft ( int n ) const  //取左边的n个字符。
QStringright ( int n ) const //取右边的n个字符。

replace()函数提供方法替换字符串。

remove()函数从字符串中移除字符。

split()函数拆分字符串。

mid()取子串。

上一篇:Eclipse Plugin Dev Materials


下一篇:AngelHack China 2013 招组队成员