c++ trim
时间: 2023-06-28 08:05:17 浏览: 187
C++-STL标准模板库中的string
在C++中,可以使用以下方法来去除字符串中的空格:
1. 使用algorithm库的std::remove_if()函数:
```
#include <algorithm>
#include <cctype>
#include <iostream>
#include <string>
// trim from start (in place)
static inline void ltrim(std::string &s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](int ch) {
return !std::isspace(ch);
}));
}
// trim from end (in place)
static inline void rtrim(std::string &s) {
s.erase(std::find_if(s.rbegin(), s.rend(), [](int ch) {
return !std::isspace(ch);
}).base(), s.end());
}
// trim from both ends (in place)
static inline void trim(std::string &s) {
ltrim(s);
rtrim(s);
}
int main() {
std::string s = " hello world ";
trim(s);
std::cout << s << '\n';
}
```
2. 使用boost库中的boost::trim()函数:
```
#include <boost/algorithm/string.hpp>
#include <iostream>
#include <string>
int main() {
std::string s = " hello world ";
boost::trim(s);
std::cout << s << '\n';
}
```
这两种方法都可以实现去除字符串中的空格。
阅读全文