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 stricmp() Function
Photo Credit to CodeToFun
đ Introduction
In C programming, comparing strings is a common operation, and there are standard functions for this task.
For case-insensitive string comparison, some compilers provide a non-standard extension called stricmp()
.
It's essential to note that the use of non-standard functions may result in portability issues.
In this tutorial, we'll explore the usage and functionality of the stricmp()
function.
đĄ Syntax
The signature of the stricmp()
function is typically as follows:
int stricmp(const char *s1, const char *s2);
This function takes two strings, s1 and s2, and performs a case-insensitive comparison.
đ Example
Let's delve into an example to illustrate how the stricmp()
function works.
#include <stdio.h>
// Prototype for stricmp function (may not be needed in some compilers)
int stricmp(const char * s1,
const char * s2);
int main() {
const char * str1 = "Hello, World!";
const char * str2 = "hello, world!";
// Compare strings case-insensitively
int result = stricmp(str1, str2);
// Output the result
if (result == 0) {
printf("The strings are equal.\n");
} else {
printf("The strings are not equal.\n");
}
return 0;
}
đģ Output
The strings are equal.
đ§ How the Program Works
In this example, the stricmp()
function compares the strings "Hello, World!" and "hello, world!" case-insensitively and prints the result.
âŠī¸ Return Value
The stricmp()
function returns an integer less than, equal to, or greater than zero if s1 is found, respectively, to be less than, to match, or be greater than s2. The comparison is case-insensitive.
đ Common Use Cases
The stricmp()
function is particularly useful when you need to compare strings in a case-insensitive manner. However, be cautious about its use, as it's not a standard C library function and may not be available in all compilers.
đ Notes
- Verify whether your compiler supports the
stricmp()
function. In some environments, you might need to use platform-specific alternatives or consider converting strings to lowercase before comparison.
đĸ Optimization
The stricmp()
function is optimized for case-insensitive string comparison. However, due to its non-standard nature, consider using standard functions or platform-specific alternatives for better code portability.
đ Conclusion
The stricmp()
function in C is a non-standard extension that provides case-insensitive string comparison. While it may be convenient, be mindful of potential portability issues, and explore standard alternatives or platform-specific solutions for more robust code.
Feel free to experiment with different strings and explore the behavior of the stricmp()
function in various scenarios. Happy coding!
đ¤¯ Fun Fact
Did you Know?
For case-insensitive string comparison, the standard library provides strcasecmp() in POSIX systems and stricmp() in Windows.
đ¨âđģ 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 stricmp() Function) please comment here. I will help you immediately.