本文主要针对c++中常用replace函数用法给出九个样例程序:
用法一:
?
1
2
3
4
5
6
7
8
9
10
11
|
/*
*用str替换指定字符串从起始位置pos开始长度为len的字符
*string& replace (size_t pos, size_t len, const string& str);
*/
int main()
{
string line = "this@ is@ a test string!" ;
line = line.replace(line.find( "@" ), 1, "" ); //从第一个@位置替换第一个@为空
cout << line << endl;
return 0;
}
|
运行结果:
用法二:
?
1
2
3
4
5
6
7
8
9
10
11
|
/*
*用str替换 迭代器起始位置 和 结束位置 的字符
*string& replace (const_iterator i1, const_iterator i2, const string& str);
*/
int main()
{
string line = "this@ is@ a test string!" ;
line = line.replace(line.begin(), line.begin()+6, "" ); //用str替换从begin位置开始的6个字符
cout << line << endl;
return 0;
}
|
运行结果:
用法三:
?
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
*用substr的指定子串(给定起始位置和长度)替换从指定位置上的字符串
*string& replace (size_t pos, size_t len, const string& str, size_t subpos, size_t sublen);
*/
int main()
{
string line = "this@ is@ a test string!" ;
string substr = "12345" ;
line = line.replace(0, 5, substr, substr.find( "1" ), 3); //用substr的指定子串(从1位置数共3个字符)替换从0到5位置上的line
cout << line << endl;
return 0;
}
|
运行结果:
用法四:string转char*时编译器可能会报出警告,不建议这样做
?
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
*用str替换从指定位置0开始长度为5的字符串
*string& replace(size_t pos, size_t len, const char* s);
*/
int main()
{
string line = "this@ is@ a test string!" ;
char * str = "12345" ;
line = line.replace(0, 5, str); //用str替换从指定位置0开始长度为5的字符串
cout << line << endl;
return 0;
}
|
运行结果:
用法五:string转char*时编译器可能会报出警告,不建议这样做
?
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
*用str替换从指定迭代器位置的字符串
*string& replace (const_iterator i1, const_iterator i2, const char* s);
*/
int main()
{
string line = "this@ is@ a test string!" ;
char * str = "12345" ;
line = line.replace(line.begin(), line.begin()+9, str); //用str替换从指定迭代器位置的字符串
cout << line << endl;
return 0;
}
|
运行结果:
用法六:string转char*时编译器可能会报出警告,不建议这样做
?
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
*用s的前n个字符替换从开始位置pos长度为len的字符串
*string& replace(size_t pos, size_t len, const char* s, size_t n);
*/
int main()
{
string line = "this@ is@ a test string!" ;
char * str = "12345" ;
line = line.replace(0, 9, str, 4); //用str的前4个字符替换从0位置开始长度为9的字符串
cout << line << endl;
return 0;
}
|
运行结果:
用法七:string转char*时编译器可能会报出警告,不建议这样做
?
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
*用s的前n个字符替换指定迭代器位置(从i1到i2)的字符串
*string& replace (const_iterator i1, const_iterator i2, const char* s, size_t n);
*/
int main()
{
string line = "this@ is@ a test string!" ;
char * str = "12345" ;
line = line.replace(line.begin(), line.begin()+9, str, 4); //用str的前4个字符替换指定迭代器位置的字符串
cout << line << endl;
return 0;
}
|
运行结果:
用法八:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
*用重复n次的c字符替换从指定位置pos长度为len的内容
*string& replace (size_t pos, size_t len, size_t n, char c);
*/
int main()
{
string line = "this@ is@ a test string!" ;
char c = '1' ;
line = line.replace(0, 9, 3, c); //用重复3次的c字符替换从指定位置0长度为9的内容
cout << line << endl;
return 0;
}
|
运行结果:
用法九:
?
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
*用重复n次的c字符替换从指定迭代器位置(从i1开始到结束)的内容
*string& replace (const_iterator i1, const_iterator i2, size_t n, char c);
*/
int main()
{
string line = "this@ is@ a test string!" ;
char c = '1' ;
line = line.replace(line.begin(), line.begin()+9, 3, c); //用重复3次的c字符替换从指定迭代器位置的内容
cout << line << endl;
return 0;
}
|
运行结果:
注:所有使用迭代器类型的参数不限于string类型,可以为vector、list等其他类型迭代器。
相关文章
猜你喜欢
- 64M VPS建站:怎样优化以提高网站加载速度? 2025-06-10
- 64M VPS建站:是否适合初学者操作和管理? 2025-06-10
- ASP.NET自助建站系统中的用户注册和登录功能定制方法 2025-06-10
- ASP.NET自助建站系统的域名绑定与解析教程 2025-06-10
- 个人服务器网站搭建:如何选择合适的服务器提供商? 2025-06-10
TA的动态
- 2025-07-10 怎样使用阿里云的安全工具进行服务器漏洞扫描和修复?
- 2025-07-10 怎样使用命令行工具优化Linux云服务器的Ping性能?
- 2025-07-10 怎样使用Xshell连接华为云服务器,实现高效远程管理?
- 2025-07-10 怎样利用云服务器D盘搭建稳定、高效的网站托管环境?
- 2025-07-10 怎样使用阿里云的安全组功能来增强服务器防火墙的安全性?
快网idc优惠网
QQ交流群
您的支持,是我们最大的动力!
热门文章
-
2025-05-27 21
-
2025-05-26 37
-
2025-05-25 87
-
2025-05-27 79
-
2025-05-29 79
热门评论