cpp拾遗——STL——string

1. 特点

string是对char *的封装,使用string有如下好处
1)不用考虑内存释放和越界
2)提供了一系列的字符串操作函数

2. 构造函数

  • 默认构造函数:
    string(); //构造一个空的字符串string s1。
  • 拷贝构造函数:
    string(const string &str); //构造一个与str一样的string。如string s1(s2)。
  • 带参数的构造函数
    string(const char *s); //用字符串s初始化
    string(int n,char c); //用n个字符c初始化

3. 字符存取

string类的字符操作:
const char &operator[] (int n) const;
const char &at(int n) const;
char &operator[] (int n);
char &at(int n);
operator[]和at()均返回当前字符串中第n个字符,但二者是有区别的。
主要区别在于at()在越界时会抛出异常,[]在刚好越界时会返回(char)0,再继续越界时,编译器直接出错。如果你的程序希望可以通过try,catch捕获异常,建议采用at()。

4. string 转 c字符串

const char *c_str() const; //返回一个以'\0'结尾的字符串的首地址

int copy(char *s, int n, int pos=0) const;
把当前串中以pos开始的n个字符拷贝到以s为起始位置的字符数组中,返回实际拷贝的数目。
注意要保证s所指向的空间足够大以容纳当前字符串,不然会越界。

6. 长度

int length() const; //返回当前字符串的长度。长度不包括字符串结尾的'\0'。
bool empty() const; //当前字符串是否为空

7. 赋值

string &operator=(const string &s);//把字符串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赋给当前字符串
string &assign(const string &s,int start, int n); //把字符串s中从start开始的n个字符赋给当前字符串

8. 拼接

string &operator+=(const string &s); //把字符串s连接到当前字符串结尾
string &operator+=(const char *s);//把字符串s连接到当前字符串结尾
string &append(const char *s); //把字符串s连接到当前字符串结尾
string &append(const char *s,int n); //把字符串s的前n个字符连接到当前字符串结尾
string &append(const string &s); //同operator+=()
string &append(const string &s,int pos, int n);//把字符串s中从pos开始的n个字符连接到当前字符串结尾
string &append(int n, char c); //在当前字符串结尾添加n个字符c

9. 比较

int compare(const string &s) const; //与字符串s比较
int compare(const char *s) const; //与字符串s比较
compare函数在>时返回 1,<时返回 -1,==时返回 0。比较区分大小写,比较时参考字典顺序,排越前面的越小。大写的A比小写的a小。

10. 子串

string substr(int pos=0, int n=npos) const; //返回由pos开始的n个字符组成的子字符串

11. 替换查找

查找
int find(char c,int pos=0) const; //从pos开始查找字符c在当前字符串的位置
int find(const char *s, int pos=0) const; //从pos开始查找字符串s在当前字符串的位置
int find(const string &s, int pos=0) const; //从pos开始查找字符串s在当前字符串中的位置
find函数如果查找不到,就返回-1
int rfind(char c, int pos=npos) const; //从pos开始从后向前查找字符c在当前字符串中的位置
int rfind(const char *s, int pos=npos) const;
int rfind(const string &s, int pos=npos) const;
//rfind是反向查找的意思,如果查找不到, 返回-1

替换
string &replace(int pos, int n, const char *s);//删除从pos开始的n个字符,然后在pos处插入串s
string &replace(int pos, int n, const string &s); //删除从pos开始的n个字符,然后在pos处插入串s
void swap(string &s2); //交换当前字符串与s2的值

void main25()
{
	string s1 = "wbm hello wbm 111 wbm 222 wbm 333";
	size_t index = s1.find("wbm", 0);
	cout << "index: " << index; 


	//求itcast出现的次数
	size_t offindex = s1.find("wbm", 0);
	while (offindex != string::npos)
	{
		cout << "在下标index: " << offindex << "找到wbm\n";
		offindex = offindex + 1;
		offindex = s1.find("wbm", offindex);
	}

	//替换 
	string s2 = "wbm hello wbm 111 wbm 222 wbm 333";
	s2.replace(0, 3, "wbm");
	cout << s2 << endl;

	//求itcast出现的次数
	offindex = s2.find("wbm", 0);
	while (offindex != string::npos)
	{
		cout << "在下标index: " << offindex << "找到wbm\n";
		s2.replace(offindex, 3, "WBM");
		offindex = offindex + 1;
		offindex = s1.find("wbm", offindex);
	}
	cout << "替换以后的s2:" << s2 << endl; 
}

12. 区间删除

string &insert(int pos, const char *s);
string &insert(int pos, const string &s);
//前两个函数在pos位置插入字符串s
string &insert(int pos, int n, char c); //在pos位置 插入n个字符c

string &erase(int pos=0, int n=npos); //删除pos开始的n个字符,返回修改后的字符串

13. string相关算法

void main27()
{
	string s2 = "AAAbbb";
	transform(s2.begin(), s2.end(), s2.begin(), toupper);
	cout << s2 << endl;

	string s3 = "AAAbbb";
	transform(s3.begin(), s3.end(), s3.begin(), tolower);
	cout << s3 << endl;
}

posted on 2022-06-10 09:47  开心种树  阅读(39)  评论(0编辑  收藏  举报