3.1.5string查找和替换

这篇博客介绍了C++中对字符串进行查找和替换的操作。`find`函数用于从左向右搜索子串,而`rfind`则从右向左搜索。`replace`函数演示了如何替换字符串的一部分。此外,还展示了如何使用`append`函数拼接字符串。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

3.1.5 string查找和替换


#include <iostream>
using namespace std;
#include<string>
void test01()
{
	string str1 = "abcdefg";
	int s=str1.find("df");
	cout << s << endl;
	//rfind find
	//rfind从右向左
	//find从左向右
	s = str1.rfind("g");
	cout << s << endl;

}
void test02()
{
	string str1 = "abcdefg";
	//bcd替换成111111
	string pos=str1.replace(1, 3, "111111");
	cout << pos << endl;
}
int main()
{
	test02();

	system("pause");
	return 0;
}

3.1.4 string拼接


#include <iostream>
using namespace std;
#include <string>

void test01()
{
	string str1 = "saa";
	str1 += "11";

	string str2 = "lol";
	str1 += str2;

	string str3 = "i ";
	str3.append("sss");
	str3.append("123445", 4);

	//str3.append(str2,0,3);
	str3.append(str2, 1,1 );//第一个字符开始,截取一个字符
	cout << str3 << endl;
}
int main()
{
	test01();

	system("pause");
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

cdbycd

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值