如何在 C++ 中从字符串中移除特定字符?
本节中,我们将学习如何在 C++ 中的字符串中移除一些字符。在 C++ 中,我们可以使用 erase() 和 remove() 函数轻松完成此项任务。remove 函数获取字符串的起始和结束地址,以及要移除的字符。
Input: A number string “ABAABACCABA” Output: “BBCCB”
算法
Step 1:Take a string Step 2: Remove each occurrence of a specific character using remove() function Step 3: Print the result. Step 4: End
示例代码
#include<iostream> #include<algorithm> using namespace std; main() { string my_str = "ABAABACCABA"; cout << "Initial string: " << my_str << endl; my_str.erase(remove(my_str.begin(), my_str.end(), 'A'), my_str.end()); //remove A from string cout << "Final string: " << my_str; }
输出
Initial string: ABAABACCABA Final string: BBCCB
广告