string(超详细哦)

目录

构造函数

重载的操作符

追加字符串

重新分配字符串

字符串引索

迭代器

空间相关

char和string转换

插入

删除

查找

find(正向查找字符串中匹配) rfind(逆向查找字符串中的匹配)

find_first_of(在字符串中查找第一次匹配的字符) find_first_not_of(在字符串中查找第一次不匹配的字符)

find_last_of(在字符串中查找,最后一次匹配的字符)find_last_not_of(在字符串中查找,最后一次不匹配的字符)

substr返回一个字串

replace替换

交换两个字符串内容和判断字符串是否为空


string是一个类,里面定义很多成员函数,因为后续需要,只能现把这个说了.STL留到最后再说

构造函数

#include <iostream>
#include <string>	//C++中的string类	string 也在标准std中
//#include <cstring>	//c中的string.h
//#include <string.h>	//同上

using namespace std;

int main()
{
	string str = "hello";
	cout << str << endl;	//hello

	string str2("hello");
	cout << str2 << endl;	//hello

	string str3(5, 'a');
	cout << str3 << endl;	//aaaaa 5个a

	string str4("hello world", 5);
	cout << str4 << endl;	//hello	从"hello world"中取前5

	string str5("hello world", 6, 5);
	cout << str5 << endl;	//world	从第6个开始取5个

	//迭代器初始化string	如果不知道迭代器是什么无所谓 我只是想说了就说全 之后会说
	string str6(str.begin(), str.end());
	cout << str6 << endl;	//hello

	//逆向迭代器
	string str7(str.rbegin(), str.rend());
	cout << str7 << endl;	//olleh

	return 0;
}

重载的操作符

== > < >= <= != + += []

追加字符串

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "abc";

	str.append("de");
	cout << str << endl;	//abcde

	str.append("abcdefghijkl", 5, 2);	
	cout << str << endl;	//abcdefg	从第5个开始截取2个

	str.append("hijklm", 2);
	cout << str << endl;	//abcdefghi	截取2个

	str.append(10, 'x');
	cout << str << endl;	//abcdefghixxxxxxxxxx 追加10个x

	//迭代器追加
	str.append(str.begin(), str.end());	
	cout << str << endl;	//abcdefghixxxxxxxxxxabcdefghixxxxxxxxxx

	return 0;
}

重新分配字符串

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "abc";

	str.assign("asd");
	cout << str << endl;	//asd

	str.assign("asdfgh", 3);
	cout << str << endl;	//asd 取3个

	str.assign("qwerasdgh", 4, 3);
	cout << str << endl;	//asd 从第4个开始取3个

	str.assign(10, 'a');
	cout << str << endl;	//aaaaaaaaaa	10个a

	return 0;
}

字符串引索

#include <iostream>
#include <string>

using namespace std;

int main()
{
	//引索
	string str = "abcdefg";
	cout << str.at(4) << endl;	//e	更安全超出引索会抛出异常(实际上还是没有多少人使用)
	cout << str[4] << endl;	//e	

	return 0;
}

迭代器

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "asd";

	//返回迭代器指向字符串中第一个字符
	cout << *str.begin() << endl;	//a

	//返回迭代器指向字符串中最后一个字符的下一个位置
	cout << *(str.end() - 1) << endl;	//d

	//返回逆向迭代器指向字符串中最后一个字符
	cout << *str.rbegin() << endl;	//d

	//返回逆向迭代器指向字符串第一个字符前一个位置
	cout << *(str.rend() - 1) << endl;	//a

	return 0;
}

空间相关

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "asd";

	//字符串中字符,字符数量
	cout << str.size() << endl;	//3
	cout << str.length() << endl;	//3	这两个是等价的

	//字符串空间大小
	cout << str.capacity() << endl;	//15(不小于size的大小)

	//改变字符串长度(新空间长度具体内容不确定)
	str.resize(10);
	cout << str << endl;	//abcdefg
	cout << str.size() << endl;	//10
	cout << str.capacity() << endl;	//15

	//新空间可以填充字符
	str.resize(20, 'a');
	cout << str << endl;	//asd       aaaaaaaaaa	7个空格
	cout << str.size() << endl;	//20
	cout << str.capacity() << endl;	//31

	//改变空间
	str.reserve(40);
	cout << str.capacity() << endl;	//47

	//字符串能保存的最大字符数
	cout << str.max_size() << endl;

	return 0;
}

char和string转换

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "hello world";

	//string转char*
	const char* cstr = str.c_str();
	cout << cstr << endl;	//hello world
	const char* cstr2 = str.data();
	cout << cstr2 << endl;	//hello world

	//string转char数组	实际上是拷贝
	char str3[20] = "abcde";
	str.copy(str3, str.size());
	cout << str3 << endl;	//hello world

	str.copy(str3, 5, 6);
	cout << str3 << endl;	//world	world	取5个字符从第6个开始 后面的空间不会发生改变

	return 0;
}

插入

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "asd";

	str.insert(str.begin(), '0');
	cout << str << endl;	//0asd	在迭代器前插入一个字符

	str.insert(2, "111");
	cout << str << endl;	//0a111sd 在第2个字符后插入一个字符串

	str.insert(6, "123456", 3, 2);
	cout << str << endl;	//0a111s45d	在str的第6个字符后 插入字符串第3个字符后的2字符

	str.insert(5, "222", 2);
	cout << str << endl;	//0a11122s45d	在第5个字符后插入字符串的前两个字符

	str.insert(7, 2, '3');
	cout << str << endl;	//0a1112233s45d	在第7个字符后插入2个字符

	str.insert(str.begin(), 2, '6');	
	cout << str << endl;	//660a1112233s45d 在迭代器前插入两个字符

	str.insert(str.begin(), str.begin(), str.end());
	cout << str << endl;	//660a1112233s45d660a1112233s45d 从迭代器前插入 从迭代器开始 到迭代器结束

	return 0;
}

删除

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "1234567890aaaaaaa";

	str.erase(str.begin());
	cout << str << endl;	//234567890aaaaaaa	删除当前迭代器位置字符,返回下一字符迭代器

	str.erase(str.begin(), str.begin() + 5);
	cout << str << endl;	//7890aaaaaaa 删除迭代器区间字符

	str.erase(4,3);
	cout << str << endl;	//7890aaaa	从第4个字符后开始删除3个字符

	str.erase(4);
	cout << str << endl;	//7890	从第4个字符开始全部删除

	str.erase();
	cout << "-" << str << "-" << endl;	//--	全部删除

	return 0;
}

查找

find(正向查找字符串中匹配) rfind(逆向查找字符串中的匹配)

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "111 222 333 222 111";
	
	unsigned int pos = str.find("222", 7);
	if (pos != string::npos)	
	{
		cout << pos << endl;	//12 从第7个字符开始查找字符串 返回的是第一次出现位置的下标 如果没有找到返回string::npos
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.find("111 15544", 0, 3);
	if (pos != string::npos)
	{
		cout << pos << endl;	//0 从第0个字符开始查找字符串的前3个字符,第一次出现的位置
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.find('2', 0);
	if (pos != string::npos)
	{
		cout << pos << endl;	//4 从第0个字符开始查找字符,第一次出现的位置
	}
	else
	{
		cout << "not find" << endl;
	}

	//逆向查找
	pos = str.rfind("222", 7);
	if (pos != string::npos)
	{
		cout << pos << endl;	//4 从第7个字符开始查找字符串 返回的是最后一次出现位置的下标 如果没有找到返回string::npos
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.rfind("111 15544", 19, 3);
	if (pos != string::npos)
	{
		cout << pos << endl;	//16 从第0个字符开始查找字符串的前3个字符,最后一次出现的位置
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.rfind('2', 4);
	if (pos != string::npos)
	{
		cout << pos << endl;	//4 从第5个字符开始查找字符,最后一次出现的位置
	}
	else
	{
		cout << "not find" << endl;
	}
	return 0;
}

find_first_of(在字符串中查找第一次匹配的字符) find_first_not_of(在字符串中查找第一次不匹配的字符)

#include <iostream>
#include <string>

using namespace std;

int main()
{
	//查找第一次匹配的字符
	string str = "1234567890";

	unsigned int pos = str.find_first_of("6864", 3);
	if (pos != string::npos)
	{
		cout << pos << endl;	//3	从第3个字符开始查找返回第一次匹配字符的位置
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.find_first_of("792811", 0, 4);
	if (pos != string::npos)
	{
		cout << pos << endl;	//1	从第0个字符开始查找返回第一次匹配字符的位置,最多搜索4个字符
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.find_first_of('5', 0);
	if (pos != string::npos)
	{
		cout << pos << endl;	//4	从第0个字符开始查找返回第一次匹配字符的位置
	}
	else
	{
		cout << "not find" << endl;
	}

	//查找第一次不匹配的字符
	pos = str.find_first_not_of("6864", 3);
	if (pos != string::npos)
	{
		cout << pos << endl;	//4	从第3个字符开始查找返回第一次不匹配字符的位置
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.find_first_not_of("792811", 0, 4);
	if (pos != string::npos)
	{
		cout << pos << endl;	//0	从第0个字符开始查找返回第一次不匹配字符的位置,最多搜索4个字符
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.find_first_not_of('1', 0);
	if (pos != string::npos)
	{
		cout << pos << endl;	//1	从第0个字符开始查找返回第一次不匹配字符的位置
	}
	else
	{
		cout << "not find" << endl;
	}

	return 0;
}

find_last_of(在字符串中查找,最后一次匹配的字符)find_last_not_of(在字符串中查找,最后一次不匹配的字符)

其实这个就是从第几个字符开始向前查找,然后找到第一个匹配的,或第一个不匹配的

但是这么说好像更晕,只能自己理解了.理科生嘛文字的表达能力应该理解一下.....

#include <iostream>
#include <string>

using namespace std;

int main()
{
	//find_last_not_of(在字符串中查找, 最后一次匹配的字符)
	string str = "1234567890";

	unsigned int pos = str.find_last_of("47896",7);
	if (pos != string::npos)
	{
		cout << pos << endl;	//7	从第7个字符开始查找返回第一次匹配字符的位置 从后向前查找(查找到第7个正方向)
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.find_last_of("1264", 5, 4);
	if (pos != string::npos)
	{
		cout << pos << endl;	//5	从第5个字符开始查找返回第一次匹配字符的位置,搜索5个字符 从后向前查找
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.find_last_of('1', 7);
	if (pos != string::npos)
	{
		cout << pos << endl;	//0	从第7个字符开始查找返回第一次匹配字符的位置 从后向前查找
	}
	else
	{
		cout << "not find" << endl;
	}


	//find_last_not_of(在字符串中查找, 最后一次不匹配的字符)
	pos = str.find_last_not_of("47896", 7);
	if (pos != string::npos)
	{
		cout << pos << endl;	//4	从第7个字符开始查找返回第一次不匹配字符的位置 从后向前查找(查找到第7个正方向)
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.find_last_not_of("1264", 5, 4);
	if (pos != string::npos)
	{
		cout << pos << endl;	//4	从第5个字符开始查找返回第一次不匹配字符的位置,搜索5个字符 从后向前查找
	}
	else
	{
		cout << "not find" << endl;
	}

	pos = str.find_last_not_of('1', 7);
	if (pos != string::npos)
	{
		cout << pos << endl;	//7	从第7个字符开始查找返回第一次不匹配字符的位置 从后向前查找
	}
	else
	{
		cout << "not find" << endl;
	}

	return 0;
}

substr返回一个字串

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "123456789";

	cout << str.substr(4, 3) << endl;	//567	从第4个字符开始节取3个

	return 0;
}

replace替换

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "1234567890";
	cout << str.replace(1, 2, "2233") << endl;	//122334567890	从第1个字符开始替换2个字符替换成字符串

	//1223334444567890	从第4个字符开始替换1个字符,替换成字符串从第0个字符开始到第5个
	cout << str.replace(4, 1, "3344444", 0, 5) << endl;

	//12233344445555567890	从第10个字符开始低缓1个字符,替换成五个字符
	cout << str.replace(10, 1, 5, '5') << endl;

	//hello world	从迭代器开始到结束替换成字符串
	cout << str.replace(str.begin(), str.end(), "hello world") << endl;

	//hello	从迭代器开始到结束替换成字符串中的前五个字符
	cout << str.replace(str.begin(), str.end(), "hello world", 5) << endl;

	//hello	从迭代器开始到结束替换成五个字符
	cout << str.replace(str.begin(), str.end(), 5, 'a') << endl;

	return 0;
}

交换两个字符串内容和判断字符串是否为空

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str = "";
	if (str.empty())
	{
		cout << "str is empty" << endl;
	}

	string str2 = "12345";
	string str3 = "abcde";

	cout << str2 << " " << str3 << endl;

	str2.swap(str3);

	cout << str2 << " " << str3 << endl;

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值