C++之string基本操作

熟悉STL里面的数据结构对我们做算法题有非常大的帮助,博主在Leetcode上做题就深感对STL的不熟练带来的尴尬,大多停留在C语言的思想做题。而熟悉STL不但可以优化算法,还可以装逼。

string类简化我们对字符串的操作,想想C语言的字符串的增删改查,一不小心就Bug了。string还封装了专门用于宽字符的wstring,操作基本都一样。

构造函数:

string有重载了非常多构造函数,这里就只列出比较常用的:

#include<iostream>
#include<stdlib.h>
#include<string>
using namespace std;
void main()
{
	/*构造函数*/
    string str1;   //默认构造函数
    string str2("abc");  //传入string或者c_str
    string str3(4, 'a');  //4个字符a构建成string
    string str4(str2, 1);  //从str2的位置1开始构造
    string str5(str2.begin(), str2.end());  //从str2的迭代器开始构造
    cout << str2 << endl << str3 << endl<< str4 << endl<<str5<<endl;
}

增:

string的增非常简单,因为string重载了"+","+="操作符,可以方便地对字符串进行添加,而成员函数:insert(),append(),push_back()

+=:

+=操作符是string类之间的添加。

string str1("str1");
string str2("str2");
str1 += str2;
cout << str1 << endl;

append:

string str1("str1");
str1.append("123");  //直接添加字符串至尾部
cout << str1 << endl;
str1.append("1230", 2); //从参数字符串起始位置开始添加2个字符到str1
cout << str1 << endl;
string str2("str2");
str1.append(str2, 0, 1);  //把str2的区间[0,1)的字符添加至str1
cout << str2 << endl << str1 << endl;

append是把参数添加至字符串的尾部,参数字符串可以是string,也可以是c_str,在参数字符串的后面可以参数字符串的起始位置和结束位置。总结为:append(string,[start,end))。

push_back:

string str1("str1");
str1.push_back('a');
cout << str1 << endl;

push_back()可以在string的后面添加一个字符

insert:

string str1("str1");
str1.insert(0, "insert");  //从0开始插入参数字符串
cout << str1 << endl;
str1.insert((string::size_type)0, 2, '0'); //在指定位置插入2个'0',用size_type强转不会产生歧义
cout << str1 << endl;
str1.insert(str1.begin(), 3, 'b'); //迭代器指定位置后面插入3个'b'
cout << str1 << endl;

insert可以指定位置在目标string中插入。

删:

erase:

string str1("string1");
str1.erase(0, 1); //删除指定区间
cout << str1 << endl;
str1.erase(2);  //指定删除的起始位置,直至末尾
cout << str1 << endl;

pop_back:

string str1("string1");
str1.pop_back(); //从尾部弹出字符
cout << str1 << endl;

clear:

str1.clear();//清空字符串,使字符串为空

改:

replace:

string str1("string1");
str1.replace(0, 2, "rep"); //把指定区间的字符替换成参数字符串
cout << str1 << endl;
str1.replace(0, 2,"123",2);//把指定区间的字符替换成参数字符串的前面2个
cout << str1 << endl;
str1.replace(0, 2, "456", 0, 3);  //把指定区间的字符替换成参数字符串指定的区间字符
cout << str1 << endl;

总结:replace( [ start, end ),"用于替换的字符串",[ start, end ) ),即可以指定被替换的字符串区间和用于替换的字符串区间。

查:

at:

cout << str1.at(1) << endl;//某个位置的字符

find:

string类提供的find成员函数可以查找字符或者字符串位置,凡是没有找到的均返回string::npos,该值定义为-1。

string str1("string1string1");
cout << str1.find('i') << endl;  //查找某个字符位置
int idx=str1.find('2'); //不存在返回string::npos,-1
cout << idx << endl;
cout<<str1.find("ta")<<endl; //匹配查找字符串的位置,
cout << str1.find("ng", 10)<<endl;  //从指定位置开始匹配
cout << str1.find_first_of("ta")<<endl; //从前面往后匹配参数字符串中的字符的第一个字符
cout << str1.find_last_of("tn") << endl;//从后面往前匹配参数字符串的字符
cout << str1.find_first_not_of("ta") << endl;//与find_first_of相反
cout << str1.find_last_not_of("g1") << endl;//与find_last_of相反

切割字符串:

substr:

string str1("string1string1");
string temp = str1.substr(0, 2);  //指定区间的字串
cout << temp << endl;
string temp2 = str1.substr(1);  //从指定位置开始切割至尾部
cout << temp2 << endl;

字符串和数字转换:

string str1("124");
cout << stoi(str1) << endl; //转为整数
cout << stof(string("124.3")) << endl;//转为浮点型
string str = to_string(124); //数字转为字符串
cout << str << endl;
str = to_string(13.4);
cout << str << endl;

 

  • 9
    点赞
  • 19
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值