logo

C++ virknes aizstāšana ()

Šī funkcija aizstāj to virknes daļu, kas sākas ar rakstzīmes pozīciju un aptver len rakstzīmes.

Sintakse

Apsveriet divas virknes str1 un str2. Sintakse būtu šāda:

 str1.replace(pos,len,str2); 

Parametri

    str :str ir virknes objekts, kura vērtība jāiekopē citā virknes objektā.pozīcija:pos nosaka pozīciju, kuras raksturs ir jāaizstāj.tikai :Rakstzīmju skaits, kas jāaizstāj ar citu virknes objektu.subpos:Tas nosaka virknes objekta pirmās rakstzīmes pozīciju, kas ir jākopē citā objektā kā aizstāšana.sublen :Virknes objekta rakstzīmju skaits, kas jākopē citā virknes objektā.n :Rakstzīmju skaits, kas jākopē citā virknes objektā.

Atdeves vērtība

Šī funkcija neatgriež nekādu vērtību.

1. piemērs

Pirmais piemērs parāda, kā aizstāt doto virkni, kā parametrus izmantojot pozīciju un garumu.

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

2. piemērs

Otrais piemērs parāda, kā nomainīt doto virkni, izmantojot virknes pozīciju un garumu, kas tiks kopēta citā virknes objektā.

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

3. piemērs

Trešais piemērs parāda, kā aizstāt virkni, kā parametrus izmantojot virkni un kopējamo rakstzīmju skaitu.

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