📜  C++ string.replace()函数

📅  最后修改于: 2020-10-20 08:28:51             🧑  作者: Mango

C++ string.replace()

此函数替换从字符位置pos开始并跨越len个字符的字符串部分。

句法

考虑两个字符串str1和str2。语法为:

str1.replace(pos,len,str2);

参量

  • str: str是一个字符串对象,其值将被复制到另一个字符串对象中。
  • pos: pos定义要替换其字符的位置。
  • len:要被另一个字符串对象替换的字符数。
  • subpos:它定义要复制到另一个对象的字符串对象的第一个字符的位置。
  • sublen:要复制到另一个字符串对象中的字符串对象的字符数。
  • n:要复制到另一个字符串对象中的字符数。

返回值

此函数不返回任何值。

例子1

第一个示例显示如何通过使用位置和长度作为参数来替换给定的字符串。

#include
using namespace std;
int  main()
{
string str1 = "This is C language";
string str2 = "C++";
cout << "Before replacement, string is :"<

输出:

Before replacement , string is This is C language
After replacement, string is This is C++ language

例子2

第二个示例显示了如何使用要复制到另一个字符串对象中的字符串的位置和长度替换给定的字符串。

#include
using namespace std;
int main()
{
string str1 ="This is C language"
 string str3= "java language";
cout <<"Before replacement, String is "<

输出:

Before replacement, String is This is C language
After replacement, String is This is java language

例子3

第三个示例显示如何通过使用字符串和要复制的字符数作为参数来替换字符串。

#include
using namespace std;
int main()
{
string str1="This is C language";
cout<<"Before replacement,string is"<

输出:

Before replacement,string is This is C language
After replacement,string is This is C# language