如何从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
热门推荐
3 祝福语简短的微信
10 幼儿祝福语大全简短贺卡
11 感谢教官文案祝福语简短
12 鼠年同事祝福语简短创意
13 元旦祝福语 简短独特群发
14 妈咪跟我生日祝福语简短
15 给儿子新婚祝福语简短
16 伴娘祝福语长文案简短
17 恭喜高考完祝福语简短
18 生日祝福语送老公简短