文字列の情報を取得
環境:QT5.5
リンク
http://doc.qt.io/qt-5/qstring.html#startsWith
インクルードファイル
1 | #include <QString> |
文字列が空であるか
1 2 3 4 5 6 7 | // QString str; if ( str.isEmpty() == true ) { // 空である場合の処理 } else { // 空でない場合の処理 } |
文字列がNULLであるか
1 2 3 4 5 6 7 | // QString str; if ( str.isNull() == true ) { // NULLである場合の処理 } else { // NULLでない場合の処理 } |
文字列の長さ
1 2 3 | // QString str; int cnt = str.length(); |
コメント