1、string &insert(int pos, const char *s)插入字串
2、string &insert(int pos, const string &str)插入字串
3、string &insert(int pos, int n, char c)在指定位置插入n個字元c
4、string &erase(int pos, int n)刪除從pos開始的n個字元
一、插入字串
#include
using
namespace std;
#include
intmain()
執行結果:
hello this world
請按任意鍵繼續.
..
二、刪除字元
#include
using
namespace std;
#include
intmain()
執行結果:
hello ld
請按任意鍵繼續.
..
C 學習紀錄 string容器 查詢
1 int find const string str,int pos 0 const查詢str第一次出現位置,從pos開始查詢 2 int find const char s,int pos 0 const 查詢s第一次出現位置,從pos開始查詢 3 int find const char s,i...
C 學習紀錄 string容器 賦值操作
string賦值操作 1 string operator const char s char 型別字串賦值給當前字串 2 string operator const string s string型別字串賦值給當前字串 3 string operator char c 把乙個字元c賦值給當前字串 4...
C 學習紀錄 vector容器 插入和刪除
1 push back elem 尾部插入元素elem 2 pop back 刪除最後乙個元素 3 insert const iterator pos,elem 向迭代器指向的位置插入elem 4 insert const iterator pos,int count,elem 向迭代器指向位置插入...