C의 문자열에서 선행 및 후행 공백 제거
문제:
방법 C 문자열에서 선행 및 후행 공백을 효율적으로 제거합니까? 또한 이 작업을 확장하여 문자열의 단어 사이에 있는 추가 공백을 제거하려면 어떻게 해야 합니까?
해결책:
선행 및 후행 공백 제거:
std::string trim(const std::string& str, const std::string& whitespace = " \t") { const auto strBegin = str.find_first_not_of(whitespace); if (strBegin == std::string::npos) return ""; // No content const auto strEnd = str.find_last_not_of(whitespace); 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, whitespace); // 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 trimmedFoo = trim(foo); const std::string reducedFoo = reduce(foo); std::cout << "Original: " << foo << std::endl; std::cout << "Trimmed: " << trimmedFoo << std::endl; std::cout << "Reduced: " << reducedFoo << std::endl;
출력:
Original: too much space Trimmed: too much space Reduced: too-much-space
위 내용은 C 문자열에서 선행, 후행 및 추가 공백을 효율적으로 제거하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!