erase函数的原型如下:(1)string& erase ( size_t pos = 0, size_t n = npos );(2)iterator erase ( iterator position );(3)iterator erase ( iterator first, iterator last );也就是说有三种用法:(1)erase(pos,n); 删除从pos开始的n个字符,比如erase(0,1)就是删除第一个字符(2)erase(position);删除position处的一个字符(position是个string类型的迭代器)(3)erase(first,last);删除从first到last之间的字符(first和last都是迭代器)
string find函数和find_first_of有什么区别:
差别在于:find 必须匹配完整的字符串,find_first_of只需要匹配部分
例子:string s = "abc";cout << s.find("ad") << endl; 将打印 string::npos 也就是找不到
cout << s.find_first_of("ad") << endl; 将打印0,也就是找到了,在第0个位置
时间: 2024-11-05 19:12:04