logo

Zamień ciąg C++ ()

Ta funkcja zastępuje część łańcucha rozpoczynającą się od pozycji znaku i obejmującą długość znaków.

Składnia

Rozważmy dwa ciągi str1 i str2. Składnia byłaby następująca:

 str1.replace(pos,len,str2); 

Parametry

    str.:str jest obiektem typu string, którego wartość ma zostać skopiowana do innego obiektu typu string.pozycja:pos określa pozycję, której znak ma zostać zastąpiony.tylko :Liczba znaków, które mają zostać zastąpione innym obiektem typu string.podpunkt:Określa pozycję pierwszego znaku obiektu string, który ma zostać skopiowany do innego obiektu w ramach zastąpienia.podtekst:Liczba znaków obiektu string, które mają zostać skopiowane do innego obiektu string.N :Liczba znaków, które mają zostać skopiowane do innego obiektu ciągu.

Wartość zwracana

Ta funkcja nie zwraca żadnej wartości.

Przykład 1

Pierwszy przykład pokazuje, jak zastąpić dany ciąg, używając pozycji i długości jako parametrów.

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

Przykład 2

Drugi przykład pokazuje jak zamienić dany ciąg wykorzystując położenie i długość ciągu, który ma zostać skopiowany w innym obiekcie typu string.

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

Przykład 3

Trzeci przykład pokazuje, jak zastąpić ciąg znaków, używając ciągu i liczby znaków do skopiowania jako parametrów.

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