c++ String去除頭尾空格的辦法。本站提示廣大學習愛好者:(c++ String去除頭尾空格的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是c++ String去除頭尾空格的辦法正文
本文實例講述了c++ String去除頭尾空格的辦法,分享給年夜家供年夜家參考。詳細完成辦法以下:
完成該功效可以使用string的find_first_not_of,和find_last_not_of辦法,詳細完成帶以下:
#include <iostream>
#include <string>
std::string& trim(std::string &);
int main()
{
std::string s = " Hello World!! ";
std::cout << s << " size:" << s.size() << std::endl;
std::cout << trim(s) << " size:" << trim(s).size() << std::endl;
return 0;
}
std::string& trim(std::string &s)
{
if (s.empty())
{
return s;
}
s.erase(0,s.find_first_not_of(" "));
s.erase(s.find_last_not_of(" ") + 1);
return s;
}
願望本文所述對年夜家的C++法式設計有所贊助。