C Basic
C String Functions
- C String Functions
- C strcasecmp()
- C strcat()
- C strncat()
- C strcpy()
- C strncpy()
- C strlen()
- C strcmp()
- C strncmp()
- C stricmp()
- C strchr()
- C strrchr()
- C strstr()
- C strdup()
- C strlwr()
- C strupr()
- C strrev()
- C strset()
- C strnset()
- C strtok()
- C strerror()
- C strpbrk()
- C strcoll()
- C strspn()
- C strcspn()
- C strxfrm()
- C memchr()
- C memmove()
- C memcpy()
- C memcmp()
- C memset()
C strspn() Function
Photo Credit to CodeToFun
đ Introduction
In the C programming language, string manipulation is a common and essential task.
The strspn()
function is a standard library function that calculates the length of the initial segment of a string consisting of only the characters contained in a specified set.
In this tutorial, we'll explore the usage and functionality of the strspn()
function in C.
đĄ Syntax
The syntax for the strspn()
function is as follows:
size_t strspn(const char *str, const char *charset);
- str: The string to be examined.
- charset: A null-terminated string containing the characters to match.
đ Example
Let's dive into an example to illustrate how the strspn()
function works.
#include <stdio.h>
#include <string.h>
int main() {
const char * string = "Hello, World!";
const char * charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
size_t length = strspn(string, charset);
printf("Length of initial segment containing only alphabet characters: %zu\n", length);
return 0;
}
đģ Output
Length of initial segment containing only alphabet characters: 5
đ§ How the Program Works
In this example, the strspn()
function calculates the length of the initial segment of the string "Hello, World!" that consists only of alphabet characters. The result is then printed.
âŠī¸ Return Value
The strspn()
function returns the length of the initial segment of the string str that consists only of characters present in charset.
đ Common Use Cases
The strspn()
function is particularly useful when you need to validate or extract specific segments of a string based on a predefined set of characters. It can be employed in scenarios such as input validation or parsing.
đ Notes
- The
strspn()
function stops counting characters as soon as it encounters a character not present in charset. - If the initial character of str is not in charset, the function returns zero.
đĸ Optimization
The strspn()
function is generally efficient for its intended purpose. However, for large strings and sets, consider optimizing the algorithm based on the specific use case.
đ Conclusion
The strspn()
function in C is a valuable tool for working with strings and character sets. It provides a convenient way to calculate the length of a substring that consists only of specified characters.
Feel free to experiment with different strings and character sets to explore the behavior of the strspn()
function in various scenarios. Happy coding!
đ¨âđģ Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (C strspn() Function) please comment here. I will help you immediately.