C Tutorial/string.h/strpbrk

Материал из C\C++ эксперт
Версия от 13:32, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

strpbrk

Item Value Header file string.h Declaration char *strpbrk(const char *str1, const char *str2); Return returns a pointer to the first character in *str1 that matches any character in *str2.

If there are no matches, a null pointer is returned.


<source lang="cpp">#include <stdio.h>

 #include <string.h>
 int main(void)
 {
   char *p;
   p = strpbrk("this is a test", " absj");
   printf(p);
   return 0;
 }</source>