פונקציה זו משמשת להרחבת המחרוזת על ידי הוספה בסוף הערך הנוכחי.
תחביר
שקול את המחרוזת str1 ו-str2. תחביר יהיה:
Str1.append(str2); Str1.append(str2,pos,len); Str1.append(str2,n);
פרמטרים
str : אובייקט מחרוזת שיש לצרף לאובייקט מחרוזת אחר.
פוזיציה: הוא קובע את המיקום של התו הראשון שיש לצרף לאובייקט אחר.
רק : מספר התווים שיש להעתיק באובייקט מחרוזת אחר כמחרוזת משנה.
n: מספר התווים להעתקה.
פיצול על ידי מיתר Java
ערך החזרה
פונקציה זו אינה מחזירה שום ערך.
דוגמה 1
בוא נראה את הדוגמה של הוספת המחרוזת באובייקט מחרוזת אחר.
#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>
דוגמה 2
בוא נראה את הדוגמה של הוספת המחרוזת על ידי שימוש במיקום ואורך כפרמטרים.
#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>
דוגמה 3
בואו נראה דוגמה נוספת.
#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>