string中的find(),find_first_of(),find_first_not_of()之间区别

find() 可以在指定字符串中查找完全匹配子串的位置

 find_first_of() 在指定字符串中查找第一个任意匹配子串中字符的位置

find_first_not_of() 在指定字符串中查找第一个不任意匹配子串中字符的位置

你可能感兴趣的:(string中的find(),find_first_of(),find_first_not_of()之间区别)