扩展阅读
当前位置: 编程语言>c/c++
C++ Strings(字符串) 成员 find_last_of():查找最后一个与value中的某值相等的字符
发布时间:2014-1-19
本文导语: C++ Strings(字符串) 成员 find_last_of():查找最后一个与value中的某值相等的字符
find_last_of
语法:
size_type find_last_of( const basic_string &str, size_type index = npos );
size_type find_last_of( const char *str, size_type index = npos );
size_type find_last_of( ...