Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

C strcspn() Function

Posted in C Tutorial
Updated on Jan 13, 2024
By Mari Selvan
👁ī¸ 156 - Views
âŗ 4 mins
đŸ’Ŧ 1 Comment
C strcspn() Function

Photo Credit to CodeToFun

🙋 Introduction

In C programming, strings are manipulated using various functions provided by the standard library.

The strcspn() function is one such function that calculates the length of the initial segment of a string that consists of characters not in a specified set.

In this tutorial, we'll explore the usage and functionality of the strcspn() function in C.

💡 Syntax

The syntax for the strcspn() function is as follows:

Syntax
Copied
Copy To Clipboard
size_t strcspn(const char *str1, const char *str2);
  • str1: The string to be searched.
  • str2: The set of characters to search for in str1.

📄 Example

Let's dive into an example to illustrate how the strcspn() function works.

strcspn.c
Copied
Copy To Clipboard
#include <stdio.h>
#include <string.h>

int main() {
  const char * string = "Hello, World!";
  const char * charset = "aeiou";

  // Calculate the length of the initial segment without vowels
  size_t length = strcspn(string, charset);

  // Output the result
  printf("Length of initial segment without vowels: %zu\n", length);

  return 0;
}

đŸ’ģ Output

Output
Length of initial segment without vowels: 1

🧠 How the Program Works

In this example, the strcspn() function is used to calculate the length of the initial segment of the string "Hello, World!" that does not contain any vowels ('a', 'e', 'i', 'o', 'u').

↩ī¸ Return Value

The strcspn() function returns the length of the initial segment of the string that does not contain any characters from the specified set.

📚 Common Use Cases

The strcspn() function is particularly useful when you need to find the length of a prefix substring that does not contain certain characters. It is commonly used for input validation and parsing tasks.

📝 Notes

  • If the set of characters is an empty string, the function returns the length of the entire string.
  • The time complexity of strcspn() is linear with respect to the length of the string.

đŸŽĸ Optimization

The strcspn() function is already optimized for efficiency. However, consider optimizing your algorithm if you are repeatedly calling this function in performance-critical sections of your code.

🎉 Conclusion

The strcspn() function in C is a valuable tool for determining the length of the initial segment of a string that does not contain certain characters. It provides a simple and efficient way to perform such substring analysis.

Feel free to experiment with different strings and character sets to explore the behavior of the strcspn() function in various scenarios. Happy coding!

👨‍đŸ’ģ Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
👋 Hey, I'm Mari Selvan

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

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
5 months ago

If you have any doubts regarding this article (C strcspn() Function) please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy