#include <cstring> char * strpbrk( const char *str, const char *ch );
strpbrk() 函数返回指向 str 中 ch 中任何字符的首次出现的指针,如果未找到任何字符,则返回 NULL。