首页 > 编程 > C++ > 正文

c++ String如何去除头尾空格

2020-02-24 14:23:45
字体:
来源:转载
供稿:网友

今天武林小编将在本文中为大家介绍c++ String去除头尾空格的方法,相信很多小伙伴们在学习C++的时候都不知道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++ String如何去除头尾空格的内容,本文的方法是非常简单实用的哦,请大家务必要掌握!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表