C/string.h/strcspn

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

strcspn: returns the index of the first character in *str1 that matches any of the characters in *str2

//Declaration:  size_t strcspn(const char *str1, const char *str2); 
//Return:       returns the index of the first character in *str1 that matches any of the characters in *str2. 
  #include <string.h>
  #include <stdio.h>
  int main(void)
  {
    int len;
    len = strcspn("this is a test", "ab");
    printf("%d", len);
    return 0;
  }
         
/*
8*/