在C++ STL中,string是一个字符串容器,它封装了字符串相关的操作,提供了很多方便的方法来处理字符串。
具体来说,string容器可以用于存储和操作字符串,包括以下常用操作:
使用string容器可以大大简化C++程序中的字符串处理,避免了手动对字符串进行内存分配、释放以及各种字符串操作的复杂实现。同时,由于string容器已经实现了很多常用的操作,可以更加安全和高效地处理字符串,减少程序出错的可能性。
#include<iostream>
#include<string>
using namespace std;
int main() {
string str1 = "a";
string str2 = "b";
str2.append(str1);
cout << str2 << endl;
}
append还能实现字符串截取操作
分析:实际上是从str1的第0个位置开始
,截取str1的2个字符
拼接到str2上
查找
#include<iostream>
#include<string>
using namespace std;
int main() {
string str1 = "abcd";
int pos = str1.find("bc");
cout << pos << endl;
}
索引从0开始,如果匹配不到,返回-1
rfind
:rfind是从右往左查,而find是从左往右查
替换
比较是按照ASCII进行比较的
#include<iostream>
#include<string>
using namespace std;
int main() {
string str1 = "abcd";
string str2 = "aaaa";
if (str1.compare(str2) == 0) {
cout << "二者相等" << endl;
}
else if (str1.compare(str2) > 0) {
cout << "str1大于str2" << endl;
}
else {
cout << "str1小于str2" << endl;
}
}
#include<iostream>
#include<string>
using namespace std;
int main() {
string str1 = "abcd";
//插入
str1.insert(1, "111");
cout << str1 << endl;
//删除
str1.erase(1,3);
cout << str1 << endl;
}
#include<iostream>
#include<string>
using namespace std;
int main() {
string email = "zhangsanlisiwangwu@qq.com";
int pos = email.find("@");
cout << pos << endl;
string userName = email.substr(0, pos);
cout << userName << endl;
}
在技术的道路上,我们不断探索、不断前行,不断面对挑战、不断突破自我。科技的发展改变着世界,而我们作为技术人员,也在这个过程中书写着自己的篇章。让我们携手并进,共同努力,开创美好的未来!愿我们在科技的征途上不断奋进,创造出更加美好、更加智能的明天!