C++的string类的函数使用总结
- string类对象和C风格的字符数组最大的区别就是,字符数组的长度必须指定或定义时由初始化确定,而string类对象的字符串长度时可以动态改变,不限制长度的。而且,因为是类对象,所以可以用很多类成员函数,也可以自己扩展可用的类成员函数。
函数名 描述
begin ——得到指向字符串开头的Iterator
end ——得到指向字符串结尾的Iterator
rbegin ——得到指向反向字符串开头的Iterator
rend ——得到指向反向字符串结尾的Iterator
push_back(str) ——追加一个字符,不能追加字符串,此函数来自容器
assign(str) ——和赋值操作符一样,此函数来自容器
size ——得到字符串的大小
length ——和size函数功能相同
max_size ——字符串可能的最大大小。空间足够多就足够大
capacity ——在不重新分配内存的情况下,字符串最大可能的大小,
——————每次分配的内存用完时增加原长的1/2
empty ——判断是否为空
operator[] ——取第几个元素,相当于数组
c_str ——取得C风格的const char* 字符串
data ——取得C风格的const char* 字符串,同上
operator= ——赋值操作符
reserve ——预留空间,参数是字节数,若预留足够多,可不必在一些增删改操作时——————重新分配内存而导致一些指针地址失效
swap(str) ——交换函数,参数也一定是个string对象,不能是常量字符串
insert(pos1, str, pos2=0, len=str.lenth()) ——插入字符到指定位置,有多个用法
append(str, pos, len) ——追加字符串,若不提供pos和len,则和 +=操作一样
operator+= ——+= 操作符,追加字符串,同上简单使用
erase(pos, len) ——删除字符串
clear() ——清空字符容器中所有内容
resize() ——重新分配空间
replace(pos1, len1, str2, pos2, len2) ——替代字符串,可用erase()和insert()函数组合实现。借助find和循环,可实现替换字符串中某些词
copy(str, len) ——复制字符串len个字符到str的空间,要确保空间足够,否则报错
substr(begin, len) ——得到子串,返回从begin(默认0)开始长为len的子串,默认len为到末尾
compare(pos1, len1, string2, pos2, len2) ——比较字符串,和strcmp类似,返回0为相等,1大于,-1小于。还可以子串指定和另一字符串的第几个字符开始的一个子串进行比较
operator+ ——字符串链接
operator== ——判断字符串是否相等
operator!= ——判断是否不等于
operator< ——判断是否小于
operator<< ——字符串写入输出流,cout<<str<<endl;
operator>> ——从输入流中读入字符串,cin>> str;
getline(cin, str) ——从输入流中读入一行到string对象,不限制长度。cin.getline(cstr, len)必须读取指定长度的字符到指定大小的字符数组。
-
常用的查找函数,查找成功时返回首字符所在的顺位置,失败返回std::string::npos的值4294967295=2^32-1,即int型32位数字最大值
int find(char c, int pos = 0) const;//从pos开始查找字符c在当前字符串的位置
int find(const char *s, int pos = 0) const;//从pos开始查找字符串s在当前串中的位置
int find(const char *s, int pos, int n) const;//从pos开始查找字符串s中前n个字符在当前串中的位置
int find(const string &s, int pos = 0) const;//从pos开始查找字符串s在当前串中的位置
int rfind(char c, int pos = npos) const;//从pos开始从后向前查找字符c在当前串中的位置
int rfind(const char *s, int pos = npos) const;//从pos+strlen(s)-1开始从后向前查找字符c在当前串中的位置
int rfind(const char *s, int pos, int n = npos) const;
int rfind(const string &s,int pos = npos) const;
——————
find_first_of ——查找包含子串中的任何一个字符,返回第一个位置
find_first_not_of ——查找不包含子串中的任何字符,返回第一个位置
find_last_of ——查找包含子串中的任何字符,返回最后一个位置
find_last_not_of ——查找不包含子串中的任何字符,返回最后一个位置
string和数值转换
to_string(val) ——把val转换成string
stoi(s,p,b) ——把字符串s从p开始转换成b进制的int,p默认为0,b默认10,下同
stol(s,p,b) ——long
stoul(s,p,b) ——unsigned long
stoll(s,p,b) ——long long
stoull(s,p,b) ——unsigned long long
stof(s,p) ——float
stod(s,p) ——double
stold(s,p) ——long double
- 此博客中有多个函数的多种用法举例:https://blog.csdn.net/tengfei461807914/article/details/52203202