string::find()--关键字符串定位

 语法: 

1 1.size_type source_str.find( const basic_string &str, size_type index );
2 2.size_type  source_str.find( const char *str, size_type index );
3 3.size_type  source_str.find( const char *str, size_type index, size_type length );
4 4.size_type  source_str.find( char ch, size_type index );

1、2.返回str在字符串source_str中第一次出现的位置(从index开始查找)。如果没找到则返回string::npos,

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

4.返回字符ch在字符串source_str中第一次出现的位置(从index开始查找)。如果没找到就返回string::npos

 

posted on 2012-04-21 15:20  NLP新手  阅读(1811)  评论(0编辑  收藏  举报

导航