logo

C++ String replacement()

Táto funkcia nahrádza časť reťazca, ktorá začína na pozícii znaku poz a zahŕňa len znaky.

Syntax

Zvážte dva reťazce str1 a str2. Syntax by bola:

 str1.replace(pos,len,str2); 

Parametre

    str :str je reťazcový objekt, ktorého hodnota sa má skopírovať do iného reťazcového objektu.poz :pos definuje pozíciu, ktorej znak sa má nahradiť.len :Počet znakov, ktoré sa majú nahradiť iným reťazcom.subpos:Definuje pozíciu prvého znaku objektu typu string, ktorý sa má skopírovať do iného objektu ako náhrada.sublen :Počet znakov objektu typu string, ktorý sa má skopírovať do iného objektu typu string.n :Počet znakov, ktoré sa majú skopírovať do iného reťazca.

Návratová hodnota

Táto funkcia nevracia žiadnu hodnotu.

Príklad 1

Prvý príklad ukazuje, ako nahradiť daný reťazec použitím pozície a dĺžky ako parametrov.

 #include using namespace std; int main() { string str1 = &apos;This is C language&apos;; string str2 = &apos;C++&apos;; cout &lt;&lt; &apos;Before replacement, string is :&apos;&lt;<str1<<'
'; str1.replace(8,1,str2); cout << 'after replacement, string is :'<<str1<<'
'; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Before replacement , string is This is C language After replacement, string is This is C++ language </pre> <h2>Example 2</h2> <p>Second example shows how to replace given string using position and length of the string which is to be copied in another string object.</p> <pre> #include using namespace std; int main() { string str1 =&apos;This is C language&apos; string str3= &apos;java language&apos;; cout &lt;<'before replacement, string is '<<str1<<'
'; str1.replace(8,1,str3,0,4); cout<<'after replacement,string return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Before replacement, String is This is C language After replacement, String is This is java language </pre> <h2>Example 3</h2> <p>Third example shows how to replace the string by using string and number of characters to be copied as parameters.</p> <pre> #include using namespace std; int main() { string str1=&apos;This is C language&apos;; cout&lt;<'before replacement,string is'<<str1<<'
'; str1.replace(8,1,'c##',2); cout<<'after is'<<str1; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Before replacement,string is This is C language After replacement,string is This is C# language </pre> <br></'before></pre></'before></pre></str1<<'
';>

Príklad 2

Druhý príklad ukazuje, ako nahradiť daný reťazec pomocou pozície a dĺžky reťazca, ktorý sa má skopírovať do iného reťazca.

 #include using namespace std; int main() { string str1 =&apos;This is C language&apos; string str3= &apos;java language&apos;; cout &lt;<\'before replacement, string is \'<<str1<<\'
\'; str1.replace(8,1,str3,0,4); cout<<\'after replacement,string return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Before replacement, String is This is C language After replacement, String is This is java language </pre> <h2>Example 3</h2> <p>Third example shows how to replace the string by using string and number of characters to be copied as parameters.</p> <pre> #include using namespace std; int main() { string str1=&apos;This is C language&apos;; cout&lt;<\'before replacement,string is\'<<str1<<\'
\'; str1.replace(8,1,\'c##\',2); cout<<\'after is\'<<str1; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Before replacement,string is This is C language After replacement,string is This is C# language </pre> <br></\'before></pre></\'before>

Príklad 3

Tretí príklad ukazuje, ako nahradiť reťazec použitím reťazca a počtu znakov, ktoré sa majú skopírovať ako parametre.

 #include using namespace std; int main() { string str1=&apos;This is C language&apos;; cout&lt;<\'before replacement,string is\'<<str1<<\'
\'; str1.replace(8,1,\'c##\',2); cout<<\'after is\'<<str1; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Before replacement,string is This is C language After replacement,string is This is C# language </pre> <br></\'before>