一.string容器
1.1string的基本概念
1.本质:string是C++风格的字符串,而string本质上是一个类
2.string和char*区别:
char* 是一个指针
string是一个类,类内部封装了char*,管理这个字符串,是一个char型的容器。
3.特点:
string类内部封装了很多成员方法
例如:查找find,拷贝copy,删除delete,替换replace,插入insert;
string管理char所分配内容,不用担心复制越界和取值越界等,由类内部进行负责。
1.2string的构造函数
//构造函数原型:
string(); //创建一个空的字符串,例如:string str;
string(const char* s); //使用字符串s初始化
string(const string& str); //使用一个string对象初始化另一个string对象,拷贝构造
string(int n, char c); //使用n个字符c初始化
代码演示:
#include"pch.h"
#include<iostream>
#include<string>
#include<opencv2/opencv.hpp>
#include<vector>
#include<algorithm>
using namespace std;
using namespace cv;
//构造函数原型:
//string(); 创建一个空的字符串,例如:string str;
//string(const char* s); 使用字符串s初始化
//string(const string& str); /使用一个string对象初始化另一个string对象,拷贝构造
//string(int n, char c); 使用n个字符c初始化
void test01()
{
string s1;
const char* str = "hello world";
string s2(str);
cout << "s2 = " << s2 << endl;
string s3(s2);
cout << "s3 = " << s3 << endl;
string s4(10, 'a');
cout << "s4 = " << s4 << endl;
}
int main()
{
test01();
//test02();
system("pause");
return 0;
}
1.3string的赋值操作
#include"pch.h"
#include<iostream>
#include<string>
#include<opencv2/opencv.hpp>
#include<vector>
#include<algorithm>
using namespace std;
using namespace cv;
//string的赋值操作
//赋值函数原型
//string& operator=(const char* s); char*类型字符串,赋值给当前的字符串
//string& operator=(const string &s); 把字符串s赋给当前的字符串
//string& operator=(char s); 字符串赋给当前的字符串
//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赋给单签字符串
void test01()
{
string str1;
str1 = "hello world";
cout << "str1 = " << str1 << endl;
string str2;
str2 = str1;
cout << "str2 = " << str2 << endl;
string str3;
str3 = 's';
cout << "str3 = " << str3 << endl;
string str4;
str4.assign("hello C++");
cout << "str4 = " << str4 << endl;
string str5;
str5.assign("hello C++",5);
cout << "str5 = " << str5 << endl;
string str6;
str6.assign(str5);
cout << "str6 = " << str6 << endl;
string str7;
str7.assign(5,'w');
cout << "str7 = " << str7 << endl;
}
1.4string的字符拼接
实现在字符串末尾拼接字符串
#include"pch.h"
#include<iostream>
#include<string>
#include<opencv2/opencv.hpp>
#include<vector>
#include<algorithm>
using namespace std;
using namespace cv;
//string的赋值操作
//赋值函数原型
//string& operator+=(const char* str); 重载+=操作符
//string& operator+=(const string c); 重载+=操作符
//string& operator+=(const string& str); 重载+=操作符
//string& append(const char* s); 把字符串s连接到当前字符串结尾
//string& append(const char *s,int n); 把字符串s的前n个字符连接到当前字符串结尾
//string& append(const string &s); 同operator+=(const string& str)
//string& append(const string &s,int pos,int n); 字符串s中从pos开始的n个字符连接到字符串结尾
void test01()
{
string str1 = "我";
str1 += "爱玩游戏";
cout << "str1 = " << str1 << endl;
string str2 = str1;
str2 += ":";
cout << "str2 = " << str2 << endl;
string str3 = "LOL";
str3 +=str1 ;
cout << "str3 = " << str3 << endl;
string str4 = "I";
str4.append("love");
cout << "str4 = " << str4 << endl;
str4.append("game adbs", 4);
cout << "str4 = " << str4 << endl;
str4.append(str3);
cout << "str4 = " << str4 << endl;
str4.append(str3,0,2); //第二个参数,开始截取的位置,第三个参数,截取的长度
cout << "str4 = " << str4 << endl;
}
int main()
{
test01();
//test02();
system("pause");
return 0;
}
1.5string查找和替换
#include"pch.h"
#include<iostream>
#include<string>
#include<opencv2/opencv.hpp>
#include<vector>
#include<algorithm>
using namespace std;
using namespace cv;
//1.查找
void test01()
{
string str1 = "abcdef";
int pos = str1.find("de");
if (pos == -1)
{
cout << "未找到相关字符" << endl;
}
else
{
cout << pos << endl; //找到相关内容输出第一个字符的索引值,未找到则输出-1
}
//rfind和find的区别:rfind是从右往左查找
pos = str1.rfind("de");
cout << pos << endl;
}
void test02()
{
string str1 = "abcdef";
str1.replace(1, 3, "1111"); //从1号位置起替换成1111
cout << str1 << endl;
}
int main()
{
test01();
test02();
system("pause");
return 0;
}
1.6 string字符串比较
字符串比较是按字符的ASCII码进行对比
两个字符串相等返回0;
第一个字符大于第二个字符返回1;
第一个字符大于第二个字符返回-1;
字符串对比主要是用于比较两个字符串是否相等,判断谁大谁小的意义不是很大。
#include"pch.h"
#include<iostream>
#include<string>
#include<opencv2/opencv.hpp>
#include<vector>
#include<algorithm>
using namespace std;
using namespace cv;
void test01()
{
string str1 = "zbcdef";
string str2 = "xbcdef";
if (str1.compare(str2) == 0)
{
cout << "str1等于str2" << endl;
}
else if(str1.compare(str2)>0)
{
cout << "str1大于str2" << endl;
}
else
{
cout << "str1小于str2" << endl;
}
}
int main()
{
test01();
//test02();
system("pause");
return 0;
}
1.7 string字符串存取
#include"pch.h"
#include<iostream>
#include<string>
#include<opencv2/opencv.hpp>
#include<vector>
#include<algorithm>
using namespace std;
using namespace cv;
void test01()
{
string str1 = "zbcdef";
cout << str1 << endl;
//1.通过[]访问单个字符
for (int i = 0; i < str1.size(); i++)
{
cout << "i = " << str1[i] << endl;
}
//2.通过at方式访问单个字符
for (int i = 0; i < str1.size(); i++)
{
cout << str1.at(i) << " ";
}
cout << endl;
//修改单个字符
str1[0] = 'a';
cout << str1 << endl;
str1.at(1) = 'f';
cout << str1<<endl;
}
int main()
{
test01();
//test02();
system("pause");
return 0;
}
1.8 string插入和删除
#include"pch.h"
#include<iostream>
#include<string>
#include<opencv2/opencv.hpp>
#include<vector>
#include<algorithm>
using namespace std;
using namespace cv;
void test01()
{
string str = "hello";
cout << str << endl;
//插入
str.insert(1, "111");
cout << str << endl;
//删除
str.erase(1, 3);
cout << str << endl;
}
int main()
{
test01();
//test02();
system("pause");
return 0;
}
1.9 string字串
#include"pch.h"
#include<iostream>
#include<string>
#include<opencv2/opencv.hpp>
#include<vector>
#include<algorithm>
using namespace std;
using namespace cv;
void test01()
{
string str = "hello";
//截取求字串
string subStr = str.substr(1, 3);
cout << subStr << endl;
}
//实用例子
void test02()
{
string email = "zhangsan@sina.com";
//从邮箱地址中获取用户名信息
int pos = email.find("@");
string usrName = email.substr(0, pos);
cout << usrName << endl;
}
int main()
{
test01();
test02();
system("pause");
return 0;
}