strspn() function in C
The strspn() function returns the length of the initial substring of the string pointed to by str1 that is made up of only those character contained in the string pointed to by str2.
Syntax :
size_t strspn(const char *str1, const char *str2) str1 : string to be scanned. str2 : string containing the characters to match. Return Value : This function returns the number of characters in the initial segment of str1 which consist only of characters from str2.
// C program to illustrate strspn() function #include <stdio.h> #include <string.h> int main () { int len = strspn ( "geeks for geeks" , "geek" ); printf ( "Length of initial segment matching : %d\n" , len ); return (0); } |
Output:
Length of initial segment matching 4
// C program to illustrate strspn() function #include <stdio.h> #include <string.h> int main () { int len = strspn ( "i am" , "xyz" ); printf ( "Length of initial segment matching : %d\n" , len ); return (0); } |
Output:
Length of initial segment matching 0
This article is contributed by Shivani Ghughtyal. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Please Login to comment...