首頁 > 後端開發 > C++ > 如何在 C 中執行部分字串替換?

如何在 C 中執行部分字串替換?

Barbara Streisand
發布: 2025-01-04 18:34:43
原創
659 人瀏覽過

How to Perform Partial String Replacement in C  ?

C 中的部分字串替換

替換字串的特定部分是程式設計中的常見任務。本文探討如何使用標準 C 函式庫執行此類替換。

最初建議使用 Qt 框架,該框架提供了特定的替換方法,我們深入研究標準庫方法。

標準函式庫解決方案

標準函式庫分別提供尋找與取代功能。透過組合這些函數,我們可以實現替換機制:

bool replace(std::string& str, const std::string& from, const std::string& to) {
    size_t start_pos = str.find(from);
    if(start_pos == std::string::npos)
        return false;
    str.replace(start_pos, from.length(), to);
    return true;
}

int main() {
    std::string string("hello $name");
    replace(string, "$name", "Somename");
    return 0;
}
登入後複製

取代所有出現的

要替換子字串的所有出現,我們可以使用循環迭代字串並相應地執行替換:

void replaceAll(std::string& str, const std::string& from, const std::string& to) {
    if(from.empty())
        return;
    size_t start_pos = 0;
    while((start_pos = str.find(from, start_pos)) != std::string::npos) {
        str.replace(start_pos, from.length(), to);
        start_pos += to.length(); // In case 'to' contains 'from', like replacing 'x' with 'yx'
    }
}
登入後複製

以上是如何在 C 中執行部分字串替換?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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