📜  C++ string.append()函数

📅  最后修改于: 2020-10-21 01:50:32             🧑  作者: Mango

C++ string.append()

此函数用于通过在当前值的末尾追加来扩展字符串。

句法

考虑字符串str1和str2。语法为:

Str1.append(str2);
Str1.append(str2,pos,len);
Str1.append(str2,n);

参量

str:要附加在另一个字符串对象中的字符串对象。

pos:它确定要附加到另一个对象的第一个字符的位置。

len:要作为子字符串复制到另一个字符串对象中的字符数。

n:要复制的字符数。

返回值

此函数不返回任何值。

例子1

让我们看一下将字符串追加到另一个字符串对象中的示例。

#include
using namespace std;
int main()
{
string str1="Welcome to C++ programming";
string str2="language";
cout<<"Before appending,string value is"<

输出:

Before appending,string value is Welcome to C++ programming
After appending,string value is Welcome to C++ programming language

例子2

让我们看一下通过使用位置和长度作为参数附加字符串的示例。

#include
using namespace std;
int main()
{
 string str1 = "Mango is my favourite" ;
string str2 ="fruit";
cout<<"Before appending, string value is :" <

输出:

Before appending, string value is Mango is my favourite
After appending, string value is Mango is my favourite fruit

例子3

让我们来看另一个例子。

#include
using namespace std;
int main()
{
 string str1 = "Kashmir is nature";
str1.append("of  beauty",9) ;
cout<<"String value is :"<

输出:

String value is Kashmir is nature of beauty