此函數用於通過附加在當前值的末尾來擴展字符串。
用法
考慮字符串 str1 和 str2。語法是:
Str1.append(str2);
Str1.append(str2,pos,len);
Str1.append(str2,n);
參數
str:要附加到另一個字符串對象中的字符串對象。
pos:它確定要附加到另一個對象的第一個字符的位置。
len:要在另一個字符串對象中作為子字符串複製的字符數。
n:要複製的字符數。
返回值
此函數不返回任何值。
例子1
讓我們看看將字符串附加到另一個字符串對象中的示例。
#include<iostream>
using namespace std;
int main()
{
string str1="Welcome to C++ programming";
string str2="language";
cout<<"Before appending,string value is"<<str1<<'\n';
str1.append(str2);
cout<<"After appending, string value is"<<str1<<'\n';
return 0;
}
輸出:
Before appending,string value is Welcome to C++ programming After appending,string value is Welcome to C++ programming language
例子2
讓我們看看使用位置和長度作為參數附加字符串的示例。
#include<iostream>
using namespace std;
int main()
{
string str1 = "Mango is my favourite" ;
string str2 ="fruit";
cout<<"Before appending, string value is:" <<str1<<'\n';
str1.append(str2,0,5);
cout<<"After appending, string value is:" <<str1<<'\n';
return 0;
}
輸出:
Before appending, string value is Mango is my favourite After appending, string value is Mango is my favourite fruit
例子3
讓我們看另一個例子。
#include<iostream>
using namespace std;
int main()
{
string str1 = "Kashmir is nature";
str1.append("of beauty",9) ;
cout<<"String value is:"<<str1;
return 0;
}
輸出:
String value is Kashmir is nature of beauty
相關用法
- C++ String at()用法及代碼示例
- C++ String swap()用法及代碼示例
- C++ String back()用法及代碼示例
- C++ String Assign()用法及代碼示例
- C++ String begin()用法及代碼示例
- C++ String size()用法及代碼示例
- C++ String resize()用法及代碼示例
- C++ String Find()用法及代碼示例
- C++ String crend()用法及代碼示例
- C++ String compare()用法及代碼示例
- C++ String empty()用法及代碼示例
- C++ String replace()用法及代碼示例
- C++ String insert()用法及代碼示例
- C++ String clear()用法及代碼示例
- C++ String Data()用法及代碼示例
- C++ String cend()用法及代碼示例
- C++ String pop_back()用法及代碼示例
- C++ String find_first_not_of()用法及代碼示例
- C++ String find_last_of()用法及代碼示例
- C++ String erase()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ String append()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。