在C++中,可以使用以下方法來實現字符串trim的最佳實踐:
#include <string>
#include <iostream>
std::string trim(const std::string &s) {
size_t start = s.find_first_not_of(" \t\n\r");
if(start == std::string::npos) {
return "";
}
size_t end = s.find_last_not_of(" \t\n\r");
return s.substr(start, end - start + 1);
}
int main() {
std::string str = " hello world ";
std::cout << trim(str) << std::endl; // 輸出:hello world
return 0;
}
#include <boost/algorithm/string.hpp>
#include <iostream>
int main() {
std::string str = " hello world ";
boost::trim(str);
std::cout << str << std::endl; // 輸出:hello world
return 0;
}
#include <string>
#include <iostream>
#include <algorithm>
std::string trim(const std::string &s) {
std::string result = s;
result.erase(result.begin(), std::find_if(result.begin(), result.end(), [](unsigned char ch) {
return !std::isspace(ch);
}));
result.erase(std::find_if(result.rbegin(), result.rend(), [](unsigned char ch) {
return !std::isspace(ch);
}).base(), result.end());
return result;
}
int main() {
std::string str = " hello world ";
std::cout << trim(str) << std::endl; // 輸出:hello world
return 0;
}
這些方法都可以很好地實現字符串trim的功能,選擇其中任何一種都可以根據實際情況來進行實現。