STL常用容器-string

1.1 string基本概念

本质:

  • string是C++风格的字符串,而string本质上是一个类

string和char*的区别:

  • char*是一个指针
  • string是一个类。类内部封装了char*,管理这个字符串,是一个char*型的容器

特点:

  • string类内部封装了很多成员方法
  • 例如:查找find,拷贝copy,删除delete,替换replace,插入insert
  • string管理char*所分配的内存,不用担心复制越界和取值越界等,由类内部进行负责

1.2 string构造函数

构造函数原型:

  • string(); //创建一个空的字符串,例如:string str
    string(const char* s); //使用字符串s初始化
  • string(const string& str); //使用一个string对象初始化另一个string对象
  • string(int n, char c); //使用n个字符c初始化

1.3 string赋值函数

功能描述:

  • 给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 s);         //用n个字符c赋给当前字符串
#include<iostream>
#include<vector>
using namespace std;

void test01(){
	string str1;
	str1 = "hello world";
	cout << "str1 = " << str1 << endl;
	
	string str2;
	str2 = str1;
	cout << "str2 = " << str2 << endl;
	
	string str3;
	str3 = 'a';
	cout << "str3 = " << str3 << endl;
	
	string str4;
	str4.assign("hello C++");
	cout << "str4 = " << str4 << endl;
	
	string str5;
	str5.assign("hello C++", 5);
	cout << "str5 = " << str5 << endl;
	
	string str6;
	str6.assign(str5);
	cout << "str6 = " << str6 << endl;
	
	string str7;
	str7.assign(7, 'w');
	cout << "str7 = " << str7 << endl;
}

/*
str1 = hello world
str2 = hello world
str3 = a
str4 = hello C++  
str5 = hello      
str6 = hello      
str7 = wwwwwww 
*/

int main(){
	test01();

	system("pause");
	return 0;
}

1.4 string字符串拼接

功能描述:

  • 实现在字符串末尾拼接字符串

函数原型:

string& operator+=(const char* str);    //重载+=操作符
string& operator+=(const char c);       //重载+操作符
string& operator+=(const string& str);  //重载+操作符
string& append(const char *s);          //把字符串s连接到当前字符串结尾
string& append(const char *s, int n)    //把字符串s的前n个字符连接到当前字符串结尾
string& append(const string &s);        //同operator+=(const string& str)
string& append(const string &s, int pos, int n);  //字符串s中从pos开始的n个字符连接到字符串结尾
#include<iostream>
#include<vector>
using namespace std;

//字符串拼接
void test01()
{
    string str1 = "我";
    str1 += "爱玩游戏";
    cout << "str1 = " << str1 << endl;
    str1 += ':';
    cout << "str1 = " << str1 << endl;
    string str2 = "LOL DNF";
    str1 += str2;
    cout << "str1 = " << str1 << endl;
    string str3 = "I";
    str3.append(" love ");
    str3.append("game abcde", 4);
    //str3.append(str2);
    str3.append(str2, 4, 3); // 从下标4位置开始 ,截取3个字符,拼接到字符串末尾
    cout << "str3 = " << str3 << endl;
}
/*
str1 = 我爱玩游戏        
str1 = 我爱玩游戏:       
str1 = 我爱玩游戏:LOL DNF
str3 = I love gameDNF   
*/

int main() {
    test01();
    system("pause");
    return 0;
}

1.5 string查找和替换

功能描述:

  • 查找:从左啊往右查找指定字符串是否存在(查不到返回-1)
  • 替换:在指定的位置替换字符串

函数原型:

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(不管str多长)
string& replace(int pos, int n, const char* s);      //替换从pos开始的n个字符为字符串s
#include<iostream>
#include<vector>
using namespace std;

//查找和替换
void test01()
{
    //查找
    string str1 = "abcdefgde";
    int pos = str1.find("de");

    if (pos == -1)
    {
        cout << "未找到" << endl;
    }
    else
    {
        cout << "pos = " << pos << endl;
    }
    pos = str1.rfind("de");
    cout << "pos = " << pos << endl;
}
/*
pos = 3
pos = 7
*/

void test02()
{
    //替换
    string str1 = "abcdefgde";
    str1.replace(1, 3, "1111");
    cout << "str1 = " << str1 << endl;
}
//str1 = a1111efgde

int main() {
    test01();
    test02();
    system("pause");
    return 0;
}

1.6 string字符串比较

功能描述:

  • 字符串之间的比较

比较方式:

  • 字符串比较是按照字符的ASCII码进行对比
  • = 返回 0;> 返回 1;< 返回 -1

函数原型:

  • int compare(const string &s) const; //与字符串s比较
  • int compare(const char *s) const; //与字符串s比较
#include<iostream>
#include<vector>
using namespace std;

//字符串比较
void test01()
{
    string s1 = "hello";
    string s2 = "aello";
    int ret = s1.compare(s2);
    if (ret == 0) {
        cout << "s1 等于 s2" << endl;
    }
    else if (ret > 0)
    {
        cout << "s1 大于 s2" << endl;
    }
    else
    {
        cout << "s1 小于 s2" << endl;
    }
}
//s1 大于 s2

int main() {
    test01();
    system("pause");
    return 0;
}

1.7 string字符提取

  • char& operator[](int n); //通过[]方式取字符
  • char& at(int n); //通过at方法提取字符
#include<iostream>
#include<string>
using namespace std;

//string 字符提取 
void test01(){
	string str = "hello";
	
	//1.通过[]访问单个字符
	for(int i = 0; i < str.size(); i++){
		cout << str[i] << " ";
	} 
	cout << endl;
	
	//2.通过at方式访问单个字符
	for(int i = 0; i < str.size(); i++){
		cout << str.at(i) << " ";
	} 
	cout << endl;
	
	//修改单个字符
	str[0] = 'x';
	//xello
	cout << str << endl;
	str.at(1) = 'x';
	//xxllo
	cout << str << endl; 
}
/*
h e l l o 
h e l l o 
xello     
xxllo  
*/

int main(){
	test01();

	system("pause");
	return 0;
}

总结:string字符串中单个字符存取有两种方式,利用 [] 或者 at。

1.8 string插入和删除

功能描述:

  • 对string字符串进行插入和删除字符操作(起始下标都是从0开始)

函数原型:

string& insert(int pos, const char* s);      //插入字符串
string& insert(int pos, coust string& str);  //插入字符串
string& insert(int pos, int n, char c);      //在指定位置插入n个字符c
string& erase(int pos, int n = npos);        //删除从pos开始的n个字符
#include<iostream>
#include<string>
using namespace std;

//字符串插入和删除
void test01()
{
    string str = "hello";
    str.insert(1, "111");
    cout << str << endl;
    str.erase(1, 3); //从1号位置开始3个字符
    cout << str << endl;
}
/*
h111ello
hello   
*/

int main() {
    test01();
    system("pause");
    return 0;
}

1.9 string子串

功能描述:

  • 从字符串中获取想要的子串

函数原型:

string substr(int pos = 0, int n = npos) const;  //返回由pos开始的n个字符组成的字符串
#include<iostream>
#include<string>
using namespace std;

//子串
void test01()
{
    string str = "abcdefg";
    string subStr = str.substr(1, 3);
    cout << "subStr = " << subStr << endl;
    string email = "hello@sina.com";
    int pos = email.find("@");
    string username = email.substr(0, pos);
    cout << "username: " << username << endl;
}
/*
subStr = bcd   
username: hello
*/

int main() {
    test01();
    system("pause");
    return 0;
}
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值