Diese Funktion wird verwendet, um die Zeichenfolge zu erweitern, indem am Ende der aktuelle Wert angehängt wird.
Syntax
Betrachten Sie die Zeichenfolgen str1 und str2. Syntax wäre:
Str1.append(str2); Str1.append(str2,pos,len); Str1.append(str2,n);
Parameter
str: String-Objekt, das an ein anderes String-Objekt angehängt werden soll.
Pos: Es bestimmt die Position des ersten Zeichens, das an ein anderes Objekt angehängt werden soll.
nur : Anzahl der Zeichen, die in ein anderes String-Objekt als Teilstring kopiert werden sollen.
N : Anzahl der zu kopierenden Zeichen.
Voreingenommenheit und Varianz
Rückgabewert
Diese Funktion gibt keinen Wert zurück.
Beispiel 1
Sehen wir uns das Beispiel des Anhängens der Zeichenfolge an ein anderes Zeichenfolgenobjekt an.
#include using namespace std; int main() { string str1='Welcome to C++ programming'; string str2='language'; cout<<'before appending,string value is'<<str1<<' '; str1.append(str2); cout<<'after appending, string return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Before appending,string value is Welcome to C++ programming After appending,string value is Welcome to C++ programming language </pre> <h2>Example 2</h2> <p>Let's see the example of appending the string by using position and length as parameters.</p> <pre> #include using namespace std; int main() { string str1 = 'Mango is my favourite' ; string str2 ='fruit'; cout<<'before appending, string value is :' <<str1<<' '; str1.append(str2,0,5); cout<<'after return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Before appending, string value is Mango is my favourite After appending, string value is Mango is my favourite fruit </pre> <h2>Example 3</h2> <p>Let's see another example.</p> <pre> #include using namespace std; int main() { string str1 = 'Kashmir is nature'; str1.append('of beauty',9) ; cout<<'string value is :'<<str1; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> String value is Kashmir is nature of beauty </pre> <br></'string></pre></'before></pre></'before>
Beispiel 2
Sehen wir uns das Beispiel des Anhängens der Zeichenfolge unter Verwendung von Position und Länge als Parameter an.
#include using namespace std; int main() { string str1 = 'Mango is my favourite' ; string str2 ='fruit'; cout<<\'before appending, string value is :\' <<str1<<\' \'; str1.append(str2,0,5); cout<<\'after return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Before appending, string value is Mango is my favourite After appending, string value is Mango is my favourite fruit </pre> <h2>Example 3</h2> <p>Let's see another example.</p> <pre> #include using namespace std; int main() { string str1 = 'Kashmir is nature'; str1.append('of beauty',9) ; cout<<\'string value is :\'<<str1; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> String value is Kashmir is nature of beauty </pre> <br></\'string></pre></\'before>
Beispiel 3
Sehen wir uns ein weiteres Beispiel an.
#include using namespace std; int main() { string str1 = 'Kashmir is nature'; str1.append('of beauty',9) ; cout<<\'string value is :\'<<str1; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> String value is Kashmir is nature of beauty </pre> <br></\'string>
\'string>\'before>'before>