程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> QT如何去掉字符串中的空格

QT如何去掉字符串中的空格

編輯:C++入門知識

這裡給大家介紹QString中的兩個函數

1.QString QString::simplified() const

Returns a string that has whitespace removed from the start and the end, and that has each sequence of internal whitespace replaced with a single space.

 

返回一個字符串,移除從一開始到結尾的空白,每個序列內部的空格替換為一個空格(頭尾的都去掉了)


舉個例子:[cpp] 
<SPAN style="FONT-SIZE: 18px"> QString str = "  lots\t of\nwhitespace\r\n "; 
 str = str.simplified(); 
 // str == "lots of whitespace";</SPAN> 

 QString str = "  lots\t of\nwhitespace\r\n ";
 str = str.simplified();
 // str == "lots of whitespace";'\t', '\n', '\v', '\f', '\r', '  ' 都屬於空白的處理范圍。

 

2.QString QString::trimmed() const

Returns a string that has whitespace removed from the start and the end.

返回一個字符串,移除從一開始到結尾的空白。也去掉頭尾的空白

舉個例子:


[cpp] 
<SPAN style="FONT-SIZE: 18px"> QString str = "  lots\t of\nwhitespace\r\n "; 
 str = str.trimmed(); 
 // str == "lots\t of\nwhitespace"</SPAN> 

 QString str = "  lots\t of\nwhitespace\r\n ";
 str = str.trimmed();
 // str == "lots\t of\nwhitespace"

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved