string容器及其常见api

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
#include <string.h>
#include <stdexcept>
#include <vector>
#include <stdio.h>
/*
3.1.2.1 string 构造函数
string();//创建一个空的字符串 例如: string str;
string(const string& str);//使用一个string对象初始化另一个string对象
string(const char* s);//使用字符串s初始化
string(int n, char c);//使用n个字符c初始化

3.1.2.2 string基本赋值操作
string& operator=(const char* s);//char*类型字符串 赋值给当前的字符串
string& operator=(const string &s);//把字符串s赋给当前的字符串
string& operator=(char c);//字符赋值给当前的字符串
string& assign(const char *s);//把字符串s赋给当前的字符串
string& assign(const char *s, int n);//把字符串s的前n个字符赋给当前的字符串
string& assign(const string &s);//把字符串s赋给当前字符串
string& assign(int n, char c);//用n个字符c赋给当前字符串
string& assign(const string &s, int start, int n);//将s从start开始n个字符赋值给字符串
*/
void test01()
{
	string s1;
	string s2(s1);
	string s3("aaa");
	string s4(10,'c');
	cout << s4 << endl;
	string s5;
	//字符串复制
	s5 = s4;
	//添加字符串
	s5.assign("bbb",2);
	string s6;
	cout << s5 << endl;
}
/*
3.1.2.3 string存取字符操作
char& operator[](int n);//通过[]方式取字符
char& at(int n);//通过at方法获取字符
*/
void test02()
{
	//字符串本质就是一个数组
	string s("hello world\n");
	for (int i = 0; i < s.size(); i++)
	{
		cout << s[i];
	}
	//at 和 [] 区别   []访问越界 直接挂掉  而  at访问越界 会抛出一个 异常 out_of_range

	try {
		//s[100]
		//100已经越界,看报错异常
		s.at(100);
	}
	catch (exception& e)
	{
		cout << e.what();
	}
}

/*
3.1.2.4 string拼接操作
string& operator+=(const string& str);//重载+=操作符
string& operator+=(const char* str);//重载+=操作符
string& operator+=(const char c);//重载+=操作符
string& append(const char *s);//把字符串s连接到当前字符串结尾
string& append(const char *s, int n);//把字符串s的前n个字符连接到当前字符串结尾
string& append(const string &s);//同operator+=()
string& append(const string &s, int pos, int n);//把字符串s中从pos开始的n个字符连接到当前字符串结尾
string& append(int n, char c);//在当前字符串结尾添加n个字符c

3.1.2.5 string查找和替换
int find(const string& str, int pos = 0) const; //查找str第一次出现位置,从pos开始查找
int find(const char* s, int pos = 0) const;  //查找s第一次出现位置,从pos开始查找
int find(const char* s, int pos, int n) const;  //从pos位置查找s的前n个字符第一次位置
int find(const char c, int pos = 0) const;  //查找字符c第一次出现位置
int rfind(const string& str, int pos = npos) const;//查找str最后一次位置,从pos开始查找
int rfind(const char* s, int pos = npos) const;//查找s最后一次出现位置,从pos开始查找
int rfind(const char* s, int pos, int n) const;//从pos查找s的前n个字符最后一次位置
int rfind(const char c, int pos = 0) const; //查找字符c最后一次出现位置
string& replace(int pos, int n, const string& str); //替换从pos开始n个字符为字符串str
string& replace(int pos, int n, const char* s); //替换从pos开始的n个字符为字符串s
*/

void test03()
{
	//字符串拼接
	string s1 = "我";
	string s2 = "爱福州";
	string s = s1 + s2;
	cout << s << endl;
	string s3 = "de";
	 s += s3;
	cout << s<<endl;
	//字符串查找
	string str4 = "abcd";
	int pos = str4.find("a");
	cout << pos << endl;
	//string& replace(int pos, int n, const string& str); //替换从pos开始n个字符为字符串str
	str4.replace(1, 3, "1111");
	cout << str4 << endl;
}
/*
3.1.2.6 string比较操作
compare函数在>时返回 1,<时返回 -1,==时返回 0。
比较区分大小写,比较时参考字典顺序,排越前面的越小。
大写的A比小写的a小。
int compare(const string &s) const;//与字符串s比较
int compare(const char *s) const;//与字符串s比较
*/
void test04()
{
	string s1 = "hello";
	string s2 = "abcdef";
	if (s1.compare(s2) == 0)
	{
		cout << "str1 == str2 " << endl;
	}
	else
	{
		cout << "str1 != str2 " << endl;
	}
}
/*
3.1.2.7 string子串
string substr(int pos = 0, int n = npos) const;//返回由pos开始的n个字符组成的字符串
*/
void test05()
{
	string email = "2832352904@qq.com";
	int pos = email.find('@');
	string username=email.substr(0, pos);
	cout << username << endl;
}

//需求:  将 网址中的每个单词 都截取到 vector容器中
void test06()
{
	vector<string> word;
	string str = "www.baidu.com.cn";
	int start = 0;
	while (true)
	{
		int pos = str.find(".", start);
		if (pos == -1)
		{
			string temp = str.substr(start, str.size()-start);
			word.push_back(temp);
			break;
		}
		string tmp = str.substr(start, pos - start);

		word.push_back(tmp);

		start = pos + 1;

	}
	for (vector<string>::iterator i = word.begin(); i != word.end(); i++)
	{
		cout << *i << endl;
	}
}
/*
3.1.2.8 string插入和删除操作
string& insert(int pos, const char* s); //插入字符串
string& insert(int pos, const string& str); //插入字符串
string& insert(int pos, int n, char c);//在指定位置插入n个字符c
string& erase(int pos, int n = npos);//删除从Pos开始的n个字符
*/
void test07()
{
	string str = "hello";
	str.insert(1, "111");
	cout << str<<endl;
	str.erase(1, 3);
	cout << str << endl;
}
void doWork(string s)
{
}

void doWork2(const char* s)
{
}
//char *->string
void test08()
{
	//char *->string
	const char* str="hello";
	string s(str);
	cout << str;
	//string->char*
	const char* str2 = s.c_str();
	doWork(str); //编译器将  const char*  可以隐式类型转换为  string

}
void test09()
{
	string str = "abcDEF";
	for (int i = 0; i < str.size(); i++)
	{
		//小写转大写
		str[i] = toupper(str[i]);
		//大写转小写
		str[i] = tolower(str[i]);
	}

}
void main()
{
	//test01();
	//test02();
	//test04();
	//test05();
	//test06();
	//test07();
	//test08();
	system("pause");


}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值