溫馨提示×

c++如何刪除字符串中的某字符

c++
小億
157
2024-09-03 10:43:32
欄目: 編程語言

在C++中,你可以使用std::string類的成員函數erase()來刪除字符串中的某個字符。下面是一個示例代碼:

#include<iostream>
#include<string>

int main() {
    std::string str = "Hello, World!";
    char ch = 'l'; // 要刪除的字符

    for (size_t pos = str.find(ch); pos != std::string::npos; pos = str.find(ch)) {
        str.erase(pos, 1); // 刪除找到的字符
    }

    std::cout << "刪除字符 '" << ch << "' 后的字符串: "<< str<< std::endl;

    return 0;
}

這段代碼首先定義了一個包含字符串"Hello, World!"的std::string對象str,然后使用find()函數查找要刪除的字符(在這個例子中是字母’l’)。如果找到了該字符,find()函數將返回其在字符串中的位置,否則返回std::string::npos。接下來,我們使用erase()函數刪除找到的字符,并繼續(xù)查找直到找不到更多的該字符為止。最后,輸出處理后的字符串。

0