首頁 > 後端開發 > C++ > 主體

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

Linda Hamilton
發布: 2024-11-19 01:21:02
原創
734 人瀏覽過

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);
}
登入後複製

刪除單字之間的額外空格

要刪除單字之間的額外空格,需要一個額外的步驟。這可以使用 find_first_of、find_last_of、find_first_not_of 和 find_last_not_of 方法以及 substr 將多餘的空格替換為單一空格來實現:

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;
登入後複製
輸出:

以上是如何從 C 中的字串中刪除前導、尾隨和多餘空格?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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