在C++中,可以使用erase
函數來刪除string
中的字符。erase
函數有兩種用法:
erase(pos, count)
:從指定位置開始刪除指定數量的字符。
pos
:刪除的起始位置。count
:刪除的字符數量。erase(iterator)
:從指定迭代器位置刪除一個字符。
iterator
:刪除字符的位置的迭代器。以下是erase
函數的使用示例:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
// 刪除從索引位置5開始的3個字符
str.erase(5, 3);
std::cout << str << std::endl; // 輸出: Hello World!
// 刪除指定迭代器位置的字符
std::string::iterator it = str.begin() + 5;
str.erase(it);
std::cout << str << std::endl; // 輸出: HelloWorld!
return 0;
}
注意,erase
函數會改變原始的string
對象。