修剪和缩减字符串是编程中的常见操作。修剪是指从字符串中删除前导和尾随空白字符,而减少涉及用单个预定义字符或字符串替换连续的空白字符。
要修剪 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中文网其他相关文章!