1、C++中对字符串进行插入、替换、删除操作
#include<iostream> #include<algorithm> #include<stdio.h> #include <vector> #include<string> using namespace std; int main() { string s = "123456"; // 在字符串指定位置前插入字符, cout << s.insert(2, "abc") << endl;// 输出 :12ab3456 // 插入指定字符串的前n个字符 cout << s.insert(2, "abc", 2) << endl;// 12ab3456 //替换指定索引开始的指定长度的子串 cout << s.replace(2, 2, "abc") << endl;// 12abc56,替换“34”为“abc” //删除指定索引开始的指定长度的字符 string word = "34"; size_t index = s.find(word); if (index != string::npos) cout << s.erase(index, word.length()) << endl;//1256,删除了"34" return 0; }
原文地址:https://www.cnblogs.com/eilearn/p/9427027.html
时间: 2024-11-05 19:27:41