为了账号安全,请及时绑定邮箱和手机立即绑定

C++ string类的find()函数怎么用?

C++ string类的find()函数怎么用?

MYYA 2019-01-27 19:15:58
假设我定义了一个string类如下string str("asdfggef");应该怎么调用find的函数,是不是这样,str.find("asdf").如果说要find的字串不在str里面,该函数会返回什么??str.find("asdf"); 的返回值是什么.str.find("...."); 的返回值又是什么???
查看完整描述

2 回答

?
鸿蒙传说

TA贡献1865条经验 获得超7个赞

查找(find)
语法:
size_type find( const basic_string &str, size_type index );
size_type find( const char *str, size_type index );
size_type find( const char *str, size_type index, size_type length );
size_type find( char ch, size_type index );

find()函数:

返回str在字符串中第一次出现的位置(从index开始查找)。如果没找到则返回string::npos,
返回str在字符串中第一次出现的位置(从index开始查找,长度为length)。如果没找到就返回string::npos,
返回字符ch在字符串中第一次出现的位置(从index开始查找)。如果没找到就返回string::npos
例如,

string str1( "Alpha Beta Gamma Delta" );
unsigned int loc = str1.find( "Omega", 0 );
if( loc != string::npos )
cout << "Found Omega at " << loc << endl;
else
cout << "Didn't find Omega" << endl;



查看完整回答
反对 回复 2019-03-10
  • 2 回答
  • 0 关注
  • 642 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信