中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C++ string trim最佳實踐有哪些

c++
小樊
88
2024-06-13 15:44:38
欄目: 編程語言

在C++中,可以使用以下方法來實現字符串trim的最佳實踐:

  1. 使用std::string的erase()和find_first_not_of()、find_last_not_of()函數來去除字符串首尾的空格、制表符等空白字符:
#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;
}
  1. 使用boost庫中的trim函數來去除字符串首尾的空格、制表符等空白字符:
#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;
}
  1. 使用C++17中的std::erase_if()和std::isspace()函數來去除字符串首尾的空格、制表符等空白字符:
#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的功能,選擇其中任何一種都可以根據實際情況來進行實現。

0
刚察县| 托里县| 昆明市| 苍山县| 随州市| 五莲县| 馆陶县| 务川| 金昌市| 黎城县| 贵德县| 新田县| 苗栗县| 闽侯县| 邯郸县| 奉化市| 中牟县| 桐柏县| 乐东| 芮城县| 包头市| 泽州县| 乌拉特后旗| 贵南县| 察雅县| 西昌市| 城口县| 景泰县| 新乡市| 兴宁市| 区。| 昭觉县| 柘城县| 宣化县| 芒康县| 县级市| 安福县| 龙口市| 谢通门县| 焦作市| 富顺县|