阅读量:0
在C++中,string
类的insert()
函数用于在指定位置插入字符串、字符或另一个string
对象的内容。
其基本语法如下:
string insert(size_t pos, const string& str); string insert(size_t pos, const string& str, size_t subpos, size_t sublen); string insert(size_t pos, const char* s); string insert(size_t pos, const char* s, size_t n); string insert(size_t pos, size_t n, char c);
其中,pos
参数表示要插入的位置(索引),str
参数表示要插入的string
对象或字符串,subpos
参数表示从str
中开始插入的位置,sublen
参数表示要插入的长度,s
参数表示要插入的C风格字符串,n
参数表示要插入的字符个数,c
参数表示要插入的字符。
下面是一些示例:
std::string str = "hello"; str.insert(2, "123"); // 结果为 "he123llo" std::string str1 = "world"; std::string str2 = "hello"; str1.insert(0, str2); // 结果为 "helloworld" std::string str3 = "hi"; str3.insert(1, 3, 'x'); // 结果为 "hxxxi"