#include <cstring> char * strpbrk( const char *str, const char *ch );
strpbrk() 函式返回指向 str 中 ch 中任何字元的首次出現的指標,如果未找到任何字元,則返回 NULL。