문자열 자르기 및 줄이기는 프로그래밍에서 일반적인 작업입니다. 트리밍은 문자열에서 선행 및 후행 공백 문자를 제거하는 것을 의미하며, 축소는 연속된 공백 문자를 사전 정의된 단일 문자 또는 문자열로 바꾸는 것을 의미합니다.
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; }
다음은 Trim 및 Reduce 함수의 사용을 보여주는 예입니다.
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!