c++中string 的find_first_not_of

问题描述:

c++中string 的find_first_not_of
size_type find_first_not_of(
const value_type* _Ptr,
size_type _Off,
size_type _Count
) const;
中的 msdn 中说的不是很清楚?

_Count从以_Off开始查找第_Count次出现的不属于_Ptr中的字符索引数.例如:str = "444-555-GGG"str.find_first_not_of ( "45G", 0 );返回第一个"-"的索引值3.str.find_first_not_of ( "45G", 0, 2 );返回第二个"-"的...