string是官方提供的一个字符串操作类,相比于传统使用char*进行字符串操作,该类提供了相当多的字符串操作函数,使得该字符串类使用起来相当方便
需要包含头文件:
#include
需要使用命名空间:
using namespace std; //引用命名空间
string s; //创建string对象
或者
std::string s //创建string对象
对于string类来说,首先需要了解的是容量和大小的概念
容量是指new或malloc了多少个内存,大小是指真正使用了多少内存
获得string的容量:
#include
#include
using namespace std;
int main()
{
string s="yushi";
cout << s.capacity(); //获取容量
}
获取string的大小:
需要说明的是这两个函数没有任何区别
#include
#include
using namespace std;
int main()
{
string s="yushi";
cout << s.length() << endl;
cout << s.size() << endl;
}
结果:
但这只是该类自动分配的内存,有时侯并不符合我们的实际需求
因为当字符串长度大于原有容量时,string类并不是在原有内存上扩展内存大小,而是重新开辟一块新内存,并将原内容复制到新内存上,这明显会降低效率
所以当我们知道自己所需要的内存大小时,可以直接从一开始就手动设置内存大小
#include
#include
using namespace std;
int main() {
string s = "yushi-";
cout << s.capacity()<<endl;
cout << s.size() << endl;
s.resize(100);
cout << s.capacity() << endl;
cout << s.size() << endl;
}
结果:
可以看到,该成员函数会直接让string大小设置到相应大小
除了容量和大小外,获取string的字符串指针也很常用
注意,这两个函数完全一样,就是返回字符串指针
#include
#include
using namespace std;
int main() {
string s = "yushi-";
printf("%p:%s\n", s.c_str(), s.c_str());
printf("%p:%s\n", s.data(), s.data());
}
这两个是有区别的,虽然都是取出对应位置的字符,但at会进行越界检测,而[]不会
但在实际使用中,一般使用[],主要是因为方便,这个看自己习惯了
#include
#include
using namespace std;
int main() {
string s = "yushi-";
for (int i = 0; i < s.size(); i++) {
cout << s[i];
}
cout << endl;
for (int i = 0; i < s.size(); i++) {
cout << s.at(i);
}
}
这三个均为追加内存,主要区别是,append只能追加字符串,push_back只能追加单个字符.而+=都可以
#include
#include
using namespace std;
int main() {
string s = "yushi-";
s.append("hhh");
cout << s<<endl;
s += "kkk";
cout << s << endl;
s.push_back('c');
cout << s << endl;
}
使用哪种方法,主要是看个人习惯,我比较习惯使用+=,毕竟非常方便
这俩功能相同,就是给字符串赋值
#include
#include
using namespace std;
int main() {
string s = "yushi-";
cout << s << endl;
s.assign("hhhhh");
cout << s<<endl;
}
该函数用于比较和其它字符串的大小,按字典序比较,只有相等时返回0
#include
#include
using namespace std;
int main() {
string s = "yushi-";
cout<<s.compare("yushi-");
}
该函数作用如名,就是清空字符串
需要主要的是,该函数只是把字符串首个字符赋值为\0,达到清空效果
需要注意字符残留
用于将本string中的内容复制到一个缓存区中
需要注意的是,该复制不会在复制后添加结束字符\0,可以事先对数组进行清零,比如我这里后面添加了{},表示清零
该函数用来判断当前是否为空,如果为空,则返回1,否则返回0
#include
#include
using namespace std;
int main() {
string s = "yushi-";
cout << s.empty() << endl;
}
该函数用来删除字符串中的某一个字符,或某一段子字符串
注意,删除一个指定位置字符时,会截断后面的字符
#include
#include
using namespace std;
int main() {
string s = "yushi-";
s.erase(4);
cout << s << endl;
}
#include
#include
using namespace std;
int main() {
string s = "yushi-";
s.erase(1,3);
cout << s << endl;
}
这一系列函数都是用来搜索字符或字符串用的
需要注意的是,如果搜索到结果,会返回搜到结果的第一个字符位置
如果没有搜索到结果,则返回string::npos
示例:
#include
#include
using namespace std;
int main() {
string s = "sh-yushi-sh-sh-sh";
cout << s.find("sh") << endl; //从前向后找第一个相同的位置
cout << s.rfind("sh") << endl;//从后向前找第一个相同的位置
cout << s.find_first_of("sh") << endl; //从前向后找第一个相同的位置
cout << s.find_last_of("sh") << endl; //从后向前找第一个相同的位置
cout<<s.find_first_not_of("sh")<<endl; //从前向后找第一个不相同的位置
cout<<s.find_last_not_of("sh") << endl; //从后向前找第一个不相同的位置
}
不同搜索函数之间有细微差异,按自己需求选择函数,正常来说,一般只用得到find与rfind函数
该函数用于在字符内部指定位置插入指定字符或字符串
#include
#include
using namespace std;
int main() {
string s = "yushi-";
s.insert(0,3,'c'); //在0位置插入3个c
cout << s << endl;
s.insert(3,"yushi"); //在3位置插入字符串yushi
cout << s << endl;
}
这两个函数用于取出第一个元素与最后一个元素
#include
#include
using namespace std;
int main() {
string s = "yushi-";
cout << s.front() << endl;
cout << s.back() << endl;
}
替换指定范围内的字符串
#include
#include
using namespace std;
int main() {
string s = "yushi-";
s.replace(0,3,"hhh"); //替换0到3的字符为hhh
cout << s << endl;
}
取出指定范围的子字符串
#include
#include
using namespace std;
int main() {
string s = "yushi-";
cout<<s.substr(0,2);
}
去除最后一个字符
#include
#include
using namespace std;
int main() {
string s = "yushi-";
s.pop_back();
s.pop_back();
cout << s;
}
改变string的容量大小
#include
#include
using namespace std;
int main() {
string s = "yushi-";
cout << s.capacity() << endl;
s.reserve(100);
cout << s.capacity() << endl;
}
该函数的作用是,当实际长度比容量小太多时,会减少容量至合适的大小,避免空间浪费
#include
#include
using namespace std;
int main() {
string s = "yushi-";
cout << s.size() << endl;
cout << s.capacity() << endl << endl;
s.reserve(100); //设置容量为100
cout << s.size() << endl;
cout << s.capacity() << endl << endl;
s.shrink_to_fit(); //减少容量至合适
cout << s.size() << endl;
cout << s.capacity() << endl << endl;
}
用于交换两个string的内容
#include
#include
using namespace std;
int main() {
string s = "yushi-";
string tmp = "helllo world";
s.swap(tmp);
cout << s << endl;
cout << tmp << endl;
}
这四个函数用于获取迭代器,用于遍历或更改内容,所谓迭代器,可以理解为一种特殊的指针
以下代码为正反遍历一个string
#include
#include
using namespace std;
int main() {
string s = "yushi-";
auto beg=s.begin();
auto end=s.end();
while (beg != end) {
cout << *beg;
beg++;
}
cout << endl << endl;
auto rbeg=s.rbegin();
auto rend=s.rend();
while (rbeg != rend) {
cout << *rbeg;
rbeg++;
}
}