ホームページ >バックエンド開発 >C++ >C 文字列から先頭、末尾、余分なスペースを効率的に削除するにはどうすればよいですか?

C 文字列から先頭、末尾、余分なスペースを効率的に削除するにはどうすればよいですか?

Patricia Arquette
Patricia Arquetteオリジナル
2024-11-11 17:07:03422ブラウズ

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

C の文字列から先頭と末尾のスペースを削除する

問題:

方法C 文字列から先頭と末尾のスペースを効率的に削除できますか?さらに、この操作を拡張して文字列内の単語間の余分なスペースを削除するにはどうすればよいでしょうか?

解決策:

先頭と末尾のスペースの削除:

  • find_first_not_of(char): この関数を使用して、文字列内の空白文字ではない最初の文字を検索します。
  • find_last_not_of(char) ): この関数を使用して、文字列内の空白文字ではない最後の文字を検索します。
  • substr(start, length): この関数を使用して、間の部分文字列を抽出します。開始インデックスと指定された長さ。
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);
}

余分なスペースの削減:

  • find_first_of(char):この関数を使用して、文字列内の最初の空白文字を検索します。
  • find_first_not_of(char): この関数を使用して、空白文字の後の最初の非空白文字を検索します。
  • replace(start, length, new_str): この関数を使用して、指定された文字範囲を新しい文字列に置き換えます。
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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。