#include<iostream>
using namespace std;
#include<string>
#include<string>
//string容器的赋值
//string容器的补长 通过+=实现
void test01()
{
string str1 = "zhang";
str1 += "xiang";
cout << str1 << endl;
string str2;
str2.assign("ppppppp", 5);
cout << str2 << endl;
cout << "----------------------" << endl;
}
//string容器字符串的查找
void test02()
{
string str = "abcdefgscde";
int pos = str.find("de");//find查找到的是de字符所在的位置下标 返回的是一个整型变量
//字符串中第一个数的位置编号为0.跟数组一致
if(pos==-1)
{
cout << "未查到该字符串" << endl;
}
else
{
cout << pos << endl;
}
//rfind 是从右往左查但是数组的编号排序还是从左往右
pos=str.rfind("de");
cout << pos << endl;
//字符串的替换
string str1 = "abcdefg";
str1.replace (1, 3, "1111");//1和3的意思是从第一个位置的字符到第三个位置的字符替换为我输入的字符
cout << str1 << endl;
cout << "----------------------" << endl;
}
//字符串的比较 大小是通过字符串所对应的ascll码来对应的
void test03()
{
string str2 = "xello";
string str3 = "hello";
str2.compare(str3);
if (str2.compare(str3) == 0)
{
cout << "str2和str3是相等的" << endl;
}
else if (str2.compare(str3) > 0)
{
cout << "str2>str3" << endl;
}
else if (str2.compare(str3) < 0)
{
cout << "str2<str3" << endl;
}
cout << "----------------------" << endl;
}
//字符串得存放与取出
void test04()
{
string str5 = "hello";
for (int j = 0; j < str5.size(); j++)
{
//通过数组方式访问每个字符
cout << str5[j] << " " ;
}
cout << endl;
//通过at的方法访问
for (int j = 0; j < str5.size(); j++)
{
cout << str5.at(j) << " ";
}
cout << endl;
cout << "----------------------" << endl;
}
//字符串的插入和删除
void test05()
{
//插入
string str6 = "hello";
str6.insert(1, "111");//从第三个位置插入这个字符串
cout << str6 << endl;
//删除
str6.erase(1,3);
cout << str6 << endl;
cout << "----------------------" << endl;
}
void test06()
{
//字符串获取字串
string str7 = "abcdef";
string substr = str7.substr(1, 3);
cout << substr << endl;
cout << "----------------------" << endl;
}
//获取邮箱中的姓名
void test07()
{
string str8 = "zhangxianglong@qq.com";
//现在我想获得zhangxianglong
//通过算法实现
int pos=str8.find("@");//获取@的位置信息
string username = str8.substr(0, pos);//截取@之前的内容就是姓名
cout << username << endl;
cout << "----------------------" << endl;
}
int main()
{
test01();
test02();
test03();
test04();
test05();
test06();
test07();
}
string容器的使用方法
最新推荐文章于 2023-11-22 15:54:28 发布