C 文字列の先頭と末尾のスペースを削除し、複数のスペースを 1 つのスペースに減らすにはどうすればよいですか?

Mary-Kate Olsen
リリース: 2024-11-13 07:07:02
オリジナル
259 人が閲覧しました

How do I remove leading and trailing spaces, and reduce multiple spaces to single spaces in a C   string?

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

このタスクは一般に文字列トリミングとして知られており、C の文字列クラスを使用して実行できます。単語間の潜在的な余分なスペースに対処するために、文字列削減と呼ばれる別の操作が使用されます。

先頭と末尾のスペースのトリミング

先頭と末尾のスペースを削除するには、trim() 関数を次のように定義できます。 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);
}
ログイン後にコピー

Stringリダクション

単語間の余分なスペースを削除するには、reduce() 関数は次の操作を実行します。

  1. trim() 関数を使用して文字列をトリミングします。
  2. 置換find_first_of、find_first_not_of、および find_first_not_of を使用して、連続したスペースと単一のスペースを結合するreplace.
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;
}
ログイン後にコピー

使用法

次のコードは、trim() 関数とreduce() 関数の使用法を示しています。

int main(void)
{
    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 文字列の先頭と末尾のスペースを削除し、複数のスペースを 1 つのスペースに減らすにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート