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