=====strpbrk===== Syntax: #include char* strpbrk( const char* str1, const char* str2 ); The function strpbrk() returns a pointer to the first occurrence in str1 of any character in str2, or NULL if no such characters are present. Related Topics: [[stl/algorithm/find_first_of|(C++ Algorithms) find_first_of]], [[strchr]], [[strcspn]], [[strrchr]], [[strspn]], [[strstr]], [[strtok]]