logo

C++ String append()

Această funcție este folosită pentru a extinde șirul prin adăugarea la sfârșitul valorii curente.

Sintaxă

Luați în considerare șirul str1 și str2. Sintaxa ar fi:

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

Parametrii

str: Obiect șir care urmează să fie adăugat într-un alt obiect șir.

poz: Determină poziția primului caracter care urmează să fie atașat unui alt obiect.

numai: Numărul de caractere de copiat într-un alt obiect șir ca subșir.

n : Numărul de caractere de copiat.

alfabet după număr

Valoare returnată

Această funcție nu returnează nicio valoare.

Exemplul 1

Să vedem exemplul de adăugare a șirului într-un alt obiect șir.

 #include using namespace std; int main() { string str1=&apos;Welcome to C++ programming&apos;; string str2=&apos;language&apos;; cout&lt;<'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&apos;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 = &apos;Mango is my favourite&apos; ; string str2 =&apos;fruit&apos;; cout&lt;<'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&apos;s see another example.</p> <pre> #include using namespace std; int main() { string str1 = &apos;Kashmir is nature&apos;; str1.append(&apos;of beauty&apos;,9) ; cout&lt;<'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>

Exemplul 2

Să vedem exemplul de adăugare a șirului utilizând poziția și lungimea ca parametri.

 #include using namespace std; int main() { string str1 = &apos;Mango is my favourite&apos; ; string str2 =&apos;fruit&apos;; cout&lt;<\'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&apos;s see another example.</p> <pre> #include using namespace std; int main() { string str1 = &apos;Kashmir is nature&apos;; str1.append(&apos;of beauty&apos;,9) ; cout&lt;<\'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>

Exemplul 3

Să vedem un alt exemplu.

 #include using namespace std; int main() { string str1 = &apos;Kashmir is nature&apos;; str1.append(&apos;of beauty&apos;,9) ; cout&lt;<\'string value is :\'<<str1; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> String value is Kashmir is nature of beauty </pre> <br></\'string>