strcspn : strcspn « string.h « C Tutorial






ItemValue
Header filestring.h
Declarationsize_t strcspn(const char *str1, const char *str2);
Returnreturns 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








24.11.strcspn
24.11.1.strcspn