s.find(s2) 第一次出现的位置
s.rfind 最后一次出现的位置
s.find_first_of(s2) 任何一个字符第一次出现的位置
s.find_last_of 任何一个字符最后一次出现的位置
s.find_first_not_of(s2) 第一个不在s2中的字符所在位置
s.find_last_not_of(s2) 最后一个不在s2中的字符所在位置
s.find(s2) 第一次出现的位置
s.rfind 最后一次出现的位置
s.find_first_of(s2) 任何一个字符第一次出现的位置
s.find_last_of 任何一个字符最后一次出现的位置
s.find_first_not_of(s2) 第一个不在s2中的字符所在位置
s.find_last_not_of(s2) 最后一个不在s2中的字符所在位置