修剪和縮減字串是程式設計中常見的操作。修剪是指從字串中刪除前導和尾隨空白字符,而減少涉及用單個預定義字符或字串替換連續的空白字符。
要修剪 C 中的字串,您可以可以使用 find_first_not_of 和 find_last_not_of 方法來識別第一個和最後一個非空白字元。下面的程式碼說明了這種方法:
#include <string> std::string trim(const std::string& str) { const auto strBegin = str.find_first_not_of(" \t"); if (strBegin == std::string::npos) return ""; // no content const auto strEnd = str.find_last_not_of(" \t"); const auto strRange = strEnd - strBegin + 1; return str.substr(strBegin, strRange); }
減少字串涉及用預先定義的字元或字串取代連續的空白字元。這是執行此操作的函數:
std::string reduce(const std::string& str, const std::string& fill = " ", const std::string& whitespace = " \t") { // trim first auto result = trim(str); // replace sub ranges auto beginSpace = result.find_first_of(whitespace); while (beginSpace != std::string::npos) { const auto endSpace = result.find_first_not_of(whitespace, beginSpace); const auto range = endSpace - beginSpace; result.replace(beginSpace, range, fill); const auto newStart = beginSpace + fill.length(); beginSpace = result.find_first_of(whitespace, newStart); } return result; }
這是示範修剪和歸約函數用法的範例:
const std::string foo = " too much\t \tspace\t\t\t "; const std::string bar = "one\ntwo"; std::cout << "[" << trim(foo) << "]" << std::endl; std::cout << "[" << reduce(foo) << "]" << std::endl; std::cout << "[" << reduce(foo, "-") << "]" << std::endl; std::cout << "[" << trim(bar) << "]" << std::endl;
[too much space] [too much space] [too-much-space] [one two]
以上是如何修剪和減少 C 中的字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!