string
Posted bhd123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string相关的知识,希望对你有一定的参考价值。
string基操:
#include<string>
string a;
cin>>a;
长度的获取:
a.size();
获得第一个字符:
string:const_iterator it=s.begin();
count<<*it<<endl;
获得最后一个字符:
string:const_iterator it=s.end();
it--;
count<<*it<<endl;
倒置串:
reserve(s.begin(),s.end());
查找串:
s.find(s1);
有的话返回起始位置 没有则返回-1
以上是关于string的主要内容,如果未能解决你的问题,请参考以下文章