当前位置导航:炫浪网>>网络学院>>编程开发>>C++教程>>C++进阶与实例

C++函数之find_first_of函数

    find_first_of

    语法: size_type find_first_of( const basic_string &str, size_type index = 0 );

    size_type find_first_of( const char *str, size_type index = 0 );

    size_type find_first_of( const char *str, size_type index, size_type num );

    size_type find_first_of( char ch, size_type index = 0 );

    find_first_of()函数:

    查找在字符串中第一个与str中的某个字符匹配的字符,返回它的位置。搜索从index开始,如果没找到就返回string::npos

    查找在字符串中第一个与str中的某个字符匹配的字符,返回它的位置。搜索从index开始,最多搜索num个字符。如果没找到就返回string::npos,

    查找在字符串中第一个与ch匹配的字符,返回它的位置。搜索从index开始。

相关内容
赞助商链接