STL:string容器常用操作

Posted studying~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL:string容器常用操作相关的知识,希望对你有一定的参考价值。

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <string.h>
#include <string>
using namespace std;
//string的构造函数
void  test01()
{
	string str;
	string str1("hello");
	string str2(str1);
	string str3(5, 'k');
	cout << str1 << endl;
	cout << str2 << endl;
	cout << str3 << endl;
}

/* string容器的基本操作
string& operator=(const char* s);//char*类型字符串 赋值给当前的字符串
string& operator=(const string &s);//把字符串s赋给当前的字符串
string& operator=(char c);//字符赋值给当前的字符串
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个字符赋值给字符串
*/
void  test02()
{
	string str("helloworld");
	string str1("heihei");
	str = str1;
	str = "hehe";
	str = 'c';
	str.assign(str1);
	str.assign("hehe");
	str.assign("jack",2);
	str.assign(5, 'c');
	str.assign(str1,2,3);
	cout << str << endl;
}
/*
3.1.2.3 string存取字符操作
char& operator[](int n);//通过[]方式取字符
char& at(int n);//通过at方法获取字符
*/
void  test03()
{
	string  str("hellowolrd");
	cout << str[4] << endl;
	str[4] = 'c';
	cout << str.at(4) << endl;

}
/* string的拼接操作
string& operator+=(const string& str);//重载+=操作符
string& operator+=(const char* str);//重载+=操作符
string& operator+=(const char c);//重载+=操作符
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个字符连接到当
*/
void  test04()
{
	string  str1("hellowolrd");
	string  str2("123456");
	//str1 += str2;
	//str1 += "hehe";
	//str1 += 'c';
	//str1.append(str2);
	//str1.append("hehe");
	//str1.append("hehe",2);
	str1.append(str2, 2,3);
	cout << str1 << endl;

}

/*
string的查找和替换
int find(const string& str, int pos = 0) const; //查找str第一次出现位置,从pos开始查找
int find(const char* s, int pos = 0) const;  //查找s第一次出现位置,从pos开始查找
int find(const char* s, int pos, int n) const;  //从pos位置查找s的前n个字符第一次位置
int find(const char c, int pos = 0) const;  //查找字符c第一次出现位置
int rfind(const string& str, int pos = npos) const;//查找str最后一次位置,从pos开始查找
int rfind(const char* s, int pos = npos) const;//查找s最后一次出现位置,从pos开始查找
int rfind(const char* s, int pos, int n) const;//从pos查找s的前n个字符最后一次位置
int rfind(const char c, int pos = 0) const; //查找字符c最后一次出现位置
string& replace(int pos, int n, const string& str); //替换从pos开始n个字符为字符串str
string& replace(int pos, int n, const char* s); //替换从pos开始的n个字符为字符串s
*/
void  test05()
{
	string  str("helrlowolrd");
	string str1("wol");
	cout << str.find(str1) << endl;
	cout << str.find("wol") << endl;
	cout << str.find("world",0,2) << endl;
	cout << str.find('o') << endl;
	cout << str.rfind("lr") << endl;
	//str.replace(2,4, str1);
	str.replace(2, 2, "123456");
	cout << str << endl;

}

/*
compare函数在>时返回 1,<时返回 -1,==时返回 0。
比较区分大小写,比较时参考字典顺序,排越前面的越小。
大写的A比小写的a小。
int compare(const string &s) const;//与字符串s比较
int compare(const char *s) const;//与字符串s比较
*/
void  test06()
{
	string  str1("helo");
	string str2("world");
//	int ret = str1.compare(str2);
	int ret = str1.compare("helo");
	if (ret >0 )
	{
		cout << "str大" << endl;
	}
	else if (ret < 0)
	{
		cout << "str小" << endl;
	}
	else
	{
		cout << "相等" << endl;
	}
}

/*
3.1.2.7 string子串
string substr(int pos = 0, int n = npos) const;//返回由pos开始的n个字符组成的字符串
*/
void  test07()
{
	string  str1("helloworld");
	string str2 = str1.substr(4,3);
	cout << str2 << endl;
}
/*
3.1.2.8 string插入和删除操作
string& insert(int pos, const char* s); //插入字符串
string& insert(int pos, const string& str); //插入字符串
string& insert(int pos, int n, char c);//在指定位置插入n个字符c
string& erase(int pos, int n = npos);//删除从Pos开始的n个字符
*/
void  test08()
{
	string  str1("helloworld");
	string  str2("hehe");
	//str1.insert(2,"kkk");
	//str1.insert(2, str2);
	//str1.insert(2, 10,'r');
	str1.erase(3,3);
	cout << str1 << endl;
}

void   test09()
{
	string str("hello");
	str = "world";//str.operator=(char *)

	char  *s = NULL;
	//str.c_str();  const  char *
	s = const_cast<char  *>(str.c_str());//
	cout << s << endl;
}
int main()
{
	test09();
	return 0;
}

以上是关于STL:string容器常用操作的主要内容,如果未能解决你的问题,请参考以下文章

C++ STL常用容器以及操作简介

[C/C++]详解STL容器1--string的功能和模拟实现(深浅拷贝问题)

STL——string

C++提高编程STL-string容器

C++ STL常用标准库容器入门(vector,map,set,string,list...)

C++ STL常用标准库容器入门(vector,map,set,string,list...)