string头文件包含的函数 string find函数的使用方法?
string find函数的使用方法?
string类的构造函数和析构函数如下:
a)string s//生成空字符串s
b)string s(STR)//复制构造函数以生成STR的副本
C)string s(STR,stringx)//取字符串STR“从stringx位置开始”的部分作为字符串的初始值
d)string s(STR,stringx,strlen)//取string STR中从stringx开始且strlen最长的部分作为string的初始值
e)string s(CSTR)//取C string作为s的初始值
f)string s(chars,chars) Len)//在C string前面加上chars Len字符作为string s的初始值。
g)string s(Num,c) //生成一个包含num c个字符的字符串
h)string s(beg,end)//将begend(不包括end)区间中的字符作为字符串s
I)s的初始值。~string()//销毁所有字符以释放内存
find()类似于rfind(),但反向查找
]原型如下:
!(1)size find(const string& str,size POS=0)const//find object--string class object
(2)size find(const char*s,size POS=0)const//find object--string
(3)size find(const char*s,size POS,size n)const//findobject—字符串的前n个字符
(4)size find(char c,size POS=0)const//find object—character
find语法:size ype find(const basicuuu string&str,size ype index)size ype find(const char*str,size ype index)size ype find(const char*str,size ype index,size ype length))size ype find(char ch,size ype index)find()函数:返回字符串中STR第一次出现的位置(从index开始)。如果没有找到,则返回string::NPOs,并返回STR在字符串中第一次出现的位置(从index开始,长度)。如果找不到,则返回string::NPOs,第一次返回Ch在字符串中的位置(从索引开始)。例如,字符串STR1(“alpha-beta-gamma delta”)unsigned int LOC=STR1。查找(“Omega”,0)if(LOC!=string::NPOs)cout
可以用<algorithm>中的find函数实现。用法:
template< class inputiterator,class T> inputiterator find(inputiterator first,inputiterator last,const T&VAL)
首先传入两个迭代器first和last,然后传入一个值VAL,在[first,last]范围内返回第一个值等于VAL的迭代器(使用==运算符进行比较);如果找不到,返回last。例如,要在vector< int>;V中查找第一个值为x的迭代器,可以使用vector< int>::iterator I=find(V.begin(),V.end(),x)]请参见:link
参考代码:#include< vector>;#include< algorithm>使用命名空间标准频率(vector< int> V,int x){tint times=0(vector< int>::iterator I)=查找(v.begin(),v.end(),x)I!=v.end()i=find(i 1,v.end(),x)) 次 返回次数}
string头文件包含的函数 stringfind函数的使用方法 字符串中find函数
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。