C Tutorial/string.h/strspn — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
(нет различий)

Текущая версия на 13:32, 25 мая 2010

strspn

Item Value Header file string.h Declaration size_t strspn(const char *str1, const char *str2); Return returns the index of the first character in *str1 that does not match any of the characters in *str2.


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

 #include <stdio.h>
 int main(void)
 {
   int len;
   len = strspn("this is a test", "hi");
   printf("%d", len);
   return 0;
 }</source>