logo

C++ 문자열 추가()

이 함수는 현재 값의 끝에 추가하여 문자열을 확장하는 데 사용됩니다.

통사론

문자열 str1과 str2를 고려하십시오. 구문은 다음과 같습니다.

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

매개변수

str : 다른 문자열 객체에 추가될 문자열 객체입니다.

위치 : 다른 객체에 추가될 첫 번째 문자의 위치를 ​​결정합니다.

오직 : 다른 문자열 객체에 하위 문자열로 복사할 문자 수입니다.

N : 복사할 문자 수입니다.

CSS 이미지 정렬

반환 값

이 함수는 어떤 값도 반환하지 않습니다.

실시예 1

다른 문자열 객체에 문자열을 추가하는 예를 살펴보겠습니다.

 #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>

실시예 2

위치와 길이를 매개변수로 사용하여 문자열을 추가하는 예를 살펴보겠습니다.

 #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>

실시예 3

또 다른 예를 살펴보겠습니다.

 #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>