首頁 > 後端開發 > C++ > 如何有效地刪除 C 字串中的前導、尾隨和多餘空格?

如何有效地刪除 C 字串中的前導、尾隨和多餘空格?

Patricia Arquette
發布: 2024-11-11 17:07:03
原創
460 人瀏覽過

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

從C 語言中的字符串中刪除前導和尾隨空格

問題:

如何我們可以有效地從C 字串中刪除前導和尾隨空格嗎?另外,我們如何擴展此操作以刪除字串中單字之間的多餘空格?

解決方案:

刪除前導和尾隨空格:

  • :使用此函數尋找字串中第一個不是空白字元的字元。
  • 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 )
  • :使用此函數找出空格後的第一個非空格字元character.
  • replace(start_strength, new_strength, new 🎜>:使用此函數將指定範圍的字元替換為新的字元字串。
範例:
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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板