码迷,mamicode.com
首页 > 编程语言 > 详细

C++ string的若干问题

时间:2015-08-08 16:12:58      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

1.string的find函数

 查找(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 

C++ string的若干问题

标签:

原文地址:http://www.cnblogs.com/lkwangpy/p/4713271.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!