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 strpbrk() Function
Photo Credit to CodeToFun
đ Introduction
In C programming, dealing with strings is a fundamental aspect, and various functions are available for string manipulation.
The strpbrk()
function is one such function that is used to find the first occurrence of any character in a set of specified characters within a given string.
In this tutorial, we'll explore the usage and functionality of the strpbrk()
function in C.
đĄ Syntax
The strpbrk()
function has the following signature:
char *strpbrk(const char *str1, const char *str2);
- str1: The null-terminated string to be searched.
- str2: The null-terminated string containing characters to search for.
đ Example
Let's dive into an example to illustrate how the strpbrk()
function works.
#include <stdio.h>
#include <string.h>
int main() {
const char str1[] = "Hello, C Programming!";
const char str2[] = "aeiou";
// Find the first occurrence of any vowel in str1
char * result = strpbrk(str1, str2);
if (result != NULL) {
printf("First vowel found: %c\n", * result);
} else {
printf("No vowel found.\n");
}
return 0;
}
đģ Output
First vowel found: e
đ§ How the Program Works
In this example, the strpbrk()
function is used to find the first occurrence of any vowel (a, e, i, o, u) in the string "Hello, C Programming!".
âŠī¸ Return Value
The strpbrk()
function returns a pointer to the first occurrence of any character from str2 in str1. If no such character is found, it returns a null pointer (NULL).
đ Common Use Cases
The strpbrk()
function is particularly useful when you need to search for any character from a specified set within a string. It is commonly employed in scenarios where you want to identify the presence of certain characters in a larger text.
đ Notes
- The search is case-sensitive. If a case-insensitive search is required, consider converting the strings to lowercase (or uppercase) using functions like tolower() or toupper() before calling
strpbrk()
. - The function is part of the C standard library and is declared in the <string.h> header.
đĸ Optimization
The strpbrk()
function is optimized for efficiency, and no specific optimizations are typically needed.
đ Conclusion
The strpbrk()
function in C is a valuable tool for searching for the first occurrence of any character from a specified set within a string. It provides flexibility in identifying specific characters and is commonly used in text processing tasks.
Feel free to experiment with different strings and character sets to deepen your understanding of the strpbrk()
function. 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 strpbrk() Function) please comment here. I will help you immediately.