> 백엔드 개발 > C++ > 본문

C의 문자열에서 선행, 후행 및 추가 공백을 제거하는 방법은 무엇입니까?

Linda Hamilton
풀어 주다: 2024-11-19 01:21:02
원래의
735명이 탐색했습니다.

How to Remove Leading, Trailing, and Extra Spaces from a String in C  ?

C에서 문자열의 선행 및 후행 공백 제거

C에서 문자열 조작에는 문자열에서 불필요한 공백을 제거하는 작업이 포함되는 경우가 많습니다. 이는 데이터 정리 또는 텍스트 처리와 같은 작업에 특히 유용할 수 있습니다.

선행 및 후행 공백 제거

선행 및 후행 공백을 제거하려면 find_first_not_of를 사용할 수 있습니다. 및 find_last_not_of 메소드. 이 함수는 각각 문자열에서 공백이 아닌 첫 번째 문자와 마지막 문자를 찾습니다. 이러한 값을 사용하면 공백이 아닌 문자를 포함하는 하위 문자열을 얻을 수 있습니다.

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);
}
로그인 후 복사

단어 사이의 추가 공백 제거

단어 사이의 추가 공백을 제거하려면, 추가 단계가 필요합니다. 이는 추가 공백을 단일 공백으로 대체하기 위해 substr과 함께 find_first_of, find_last_of, find_first_not_of 및 find_last_not_of 메소드를 사용하여 달성할 수 있습니다.

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 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿