The strspn () function in C

Function size_t strspn (const char * str1, const char * str2) calculates the length of the first character segment of the str1 string containing the characters in str2

Function size_t strspn (const char * str1, const char * str2) calculates the length of the first character segment of the str1 string containing the characters in str2

Declaring the function strspn () in C

Here is the declaration for strspn () in C:

 size_t strspn ( const char * str1 , const char * str2 ) 

Parameters

str1 - Chain to be scanned.

str2 - String containing characters to match in str1.

Returns the value

This function returns the number of characters in the string segment of the original str1 string, but only the characters in str2.

For example

The following C program illustrates the usage of strspn () in C:

 #include #include int main () { int len ; const char str1 [] = "ABCDEFG019874" ; const char str2 [] = "ABCD" ; len = strspn ( str1 , str2 ); printf ( "Do dai cua chuoi ket noi dau tien la = %dn" , len ); return ( 0 ); } 

Compiling and running the above C program will result:

Picture 1 of The strspn () function in C

According to Tutorialspoint

Previous article: The function strrchr () in C

Next lesson: Strstr () function in C

Update 25 May 2019
Category

System

Mac OS X

Hardware

Game

Tech info

Technology

Science

Life

Application

Electric

Program

Mobile