溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在C++中使用insert()插入函數(shù)

發(fā)布時間:2021-03-15 17:37:46 來源:億速云 閱讀:1549 作者:Leah 欄目:編程語言

這篇文章給大家介紹怎么在C++中使用insert()插入函數(shù),內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

具體內(nèi)容如下:

basic_string& insert (size_type pos, const basic_string& str);

在原串下標為pos的字符前插入字符串str

basic_string& insert (size_type pos, const basic_string& str, size_type pos1, size_type n);

str從下標為pos1開始數(shù)的n個字符插在原串下標為pos的字符前

basic_string& insert (size_type pos, size_type n, char c);

在原串下標為pos的字符前插入n個字符c

代碼:

#include<iostream>
using namespace std;
int main()
{
 string str="hello";
 string s="Hahah";
 str.insert(1,s);//在原串下標為1的字符e前插入字符串s
 cout<<str<<endl;

 string str1="hello";
 char c='w';
 str1.insert(4,5,c);//在原串下標為4的字符o前插入5個字符c
 cout<<str1<<endl;

 string str2="hello";
 string s2="weakhaha";
 str2.insert(0,s2,1,3);//將字符串s2從下標為1的e開始數(shù)3個字符,分別是eak,插入原串的下標為0的字符h前
 cout<<str2<<endl;

 return 0;
}

運行結(jié)果:

怎么在C++中使用insert()插入函數(shù)

知識點補充:C++ string類insert函數(shù)

string的成員函數(shù)insert有以下多種重載:

string &insert(int p0, const char *s);——在p0位置插入字符串s

string &insert(int p0, const char *s, int n);——在p0位置插入字符串s的前n個字符

string &insert(int p0,const string &s);——在p0位置插入字符串s

string &insert(int p0,const string &s, int pos, int n);——在p0位置插入字符串s從pos開始的連續(xù)n個字符

string &insert(int p0, int n, char c);//在p0處插入n個字符c

iterator insert(iterator it, char c);//在it處插入字符c,返回插入后迭代器的位置

void insert(iterator it, const_iterator first, const_iteratorlast);//在it處插入從first開始至last-1的所有字符

void insert(iterator it, int n, char c);//在it處插入n個字符c

關(guān)于怎么在C++中使用insert()插入函數(shù)就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI