c++中wstring字符串替換怎么實(shí)現(xiàn)

c++
小億
184
2024-04-01 16:55:03

在C++中,可以使用下面的方法來(lái)實(shí)現(xiàn)wstring字符串的替換:

#include <iostream>
#include <string>

int main() {
    std::wstring str = L"Hello, world!";
    std::wstring oldStr = L"world";
    std::wstring newStr = L"C++";
    
    size_t pos = 0;
    while ((pos = str.find(oldStr, pos)) != std::wstring::npos) {
        str.replace(pos, oldStr.length(), newStr);
        pos += newStr.length();
    }
    
    std::wcout << str << std::endl;
    
    return 0;
}

在上面的代碼中,我們首先定義了一個(gè)wstring類型的字符串str,然后定義了要替換的舊字符串oldStr和新字符串newStr。接著使用find函數(shù)找到舊字符串在str中的位置,然后使用replace函數(shù)將舊字符串替換為新字符串。最后輸出替換后的字符串。

0