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