c++ String去除頭尾空格


1.使用string的find_first_not_of,和find_last_not_of方法

 

 1 #include <iostream>
 2 #include <string>
 3 
 4 std::string& trim(std::string &);
 5 
 6 int main() 
 7 {
 8     std::string s = " Hello World!! ";
 9     std::cout << s << " size:" << s.size() << std::endl;
10     std::cout << trim(s) << " size:" << trim(s).size() << std::endl;
11 
12     return 0;
13 }
14 
15 std::string& trim(std::string &s) 
16 {
17     if (s.empty()) 
18     {
19         return s;
20     }
21 
22     s.erase(0,s.find_first_not_of(" "));
23     s.erase(s.find_last_not_of(" ") + 1);
24     return s;
25 }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM