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

C에서 문자열을 어떻게 자르고 줄일 수 있습니까?

DDD
풀어 주다: 2024-11-13 11:56:02
원래의
226명이 탐색했습니다.

How can I trim and reduce strings in C  ?

C에서 문자열 자르기 및 줄이기

문자열 자르기 및 줄이기는 프로그래밍에서 일반적인 작업입니다. 트리밍은 문자열에서 선행 및 후행 공백 문자를 제거하는 것을 의미하며, 축소는 연속된 공백 문자를 사전 정의된 단일 문자 또는 문자열로 바꾸는 것을 의미합니다.

문자열 트리밍

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

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