C++中截短STL string

C++中截短STL string

STL string 类提供了 erase()函数,具有以下用途。
• 在给定偏移位置和字符数时删除指定数目的字符。
string sampleStr (“Hello String! Wake up to a beautiful day!”);
sampleStr.erase (13, 28); // Hello String!
• 在给定指向字符的迭代器时删除该字符。
sampleStr.erase (iCharS); // iterator points to a specific character
• 在给定由两个迭代器指定的范围时删除该范围内的字符。
sampleStr.erase (sampleStr.begin (), sampleStr.end ()); // erase from begin to end

程序清单 16.5 的示例演示了 string::erase()函数的各种重载版本的用途。
程序清单 16.5 使用 string::erase 从指定偏移位置或迭代器指定的位置开始截短字符串

0: #include <string>
1: #include <algorithm>
2: #include <iostream>
3:
4: int main ()
5: {
6: using namespace std;
7:
8: string sampleStr ("Hello String! Wake up to a beautiful day!");
9: cout << "The original sample string is: " << endl;
10: cout << sampleStr << endl << endl;
11:
12: // Delete characters given position and cou
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值