在Qt中,獲取字符串的長度可以使用QString類提供的length()或size()函數。這兩個函數都用于返回字符串的長度。
下面是一個示例代碼,演示如何在Qt中獲取字符串的長度:
#include#include #include int main(int argc, char *argv[]) { QCoreApplication app(argc, argv); QString str = "Hello, World!"; // 使用length()函數獲取字符串的長度 int length1 = str.length(); qDebug() << "Length of the string: " << length1; // 使用size()函數獲取字符串的長度 int length2 = str.size(); qDebug() << "Length of the string: " << length2; return app.exec(); }
運行該代碼將輸出:
Length of the string: 13 Length of the string: 13
這兩個函數都返回字符串的字符數,包括空格和特殊字符。如果要獲取字符串中實際可見字符的數量(即不包含空格等特殊字符),可以使用QString的simplified()函數進行處理。