string

1string.c__str();

string s("qwertyu");
const char* o = s.c_str();
cout << s << endl;qwertyu
cout << o << endl;qwertyu

2.find

string s("123456781231236123");
int pos = s.find("123");
cout << pos << endl;//0
从左往右,遇到的第一个“123”,就返回‘1’的下标
int a = s.find("123", 4);
cout << a << endl;//8
从下标四开始数

3.rfind

string s("123456781231236123");
int pos = s.rfind("123");
cout << pos << endl;//15
从右往左,遇到的第一个“123”,就返回‘1’的下标
int a = s.rfind("123", 4);
cout << a << endl;//0
从下标四开始数

4.substr


	string s("qwerty");
	string p("asdf");
	p=s.substr(0, 2);
	cout << p << endl;//qw
	把s从0开始,截取2个,覆盖到p上

5.find_first_of从左往右找

string s("abcdab");
int p = s.find_first_of("hce");
cout << p << endl;//2
s中只有出现“hce”中的一个就返回它的下标
string s("abcdab");
int p = s.find_first_of("hce",4);
cout << p << endl;//-1
从下标4开始找,由于找不到,就返回-1

6.find_last_of从右往左找

string s("abcdab");
int p = s.find_first_of("ab",4);
cout << p << endl;//4
string s("abcdab");
int p = s.find_first_of("ab");
cout << p << endl;//0

7.+

string s("abcdab");
string p=s+"qwe";
cout << p << endl;//abcdabqwe
可以:string+char*
s+"qwe"
"qww"+s
不可以:"qwe"+"qwe"

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值