The library for now is single-header only and does not require any prior set up. just download/copy and include the header file into your code and read the docs on usage.
Contributors are welcomed add more strings related functions.
If you have any questions you can reach out to me on discord or raise an issue.
This project represents a small endeavor aimed at enhancing skills in string manipulation and memory allocation. It's intended to be a long-term project with ongoing maintenance and the addition of new features. While there may be some inconsistencies in the current codebase, future updates will address these and introduce even more functionality.
Your contributions and feedback are highly appreciated as they play a crucial role in shaping the evolution of this project. Thank you for your support and stay tuned for exciting new features in the future!
Allocates memory for a new string.
Parameters:
size: The size of the memory to allocate.
Returns: A pointer to the allocated memory block.
Frees memory allocated for a string.
Parameters:
str: Pointer to the string to be freed.
Concatenates two strings.
Parameters:
str1: Pointer to the first string.
str2: Pointer to the second string.
Returns:
A pointer to the concatenated string.
Usage:
char* result = str_concat("Hello, ", "world!");
printf("%s\n", result); // Output: Hello, world!
str_free(result);
Creates a substring from a string.
Parameters:
str: Pointer to the original string.
start: Starting index of the substring.
length: Length of the substring.
Returns:
A pointer to the substring.
Usage:
char* substring = str_substr("Hello, world!", 7, 5);
printf("%s\n", substring); // Output: world
str_free(substring);
Replaces occurrences of a substring in a string.
Parameters:
str: Pointer to the original string.
old_sub: Pointer to the substring to be replaced.
new_sub: Pointer to the replacement substring.
Returns:
A pointer to the modified string.
Usage:
char* replaced = str_replace("Hello, world!", "world", "universe");
printf("%s\n", replaced); // Output: Hello, universe!
str_free(replaced);
Converts a string to uppercase.
Parameters:
str: Pointer to the string to be converted.
Usage:
char str[] = "hello, world!";
str_to_upper(str);
printf("%s\n", str); // Output: HELLO, WORLD!
Converts a string to lowercase.
Parameters:
str: Pointer to the string to be converted.
Usage:
char str[] = "HELLO, WORLD!";
str_to_lower(str);
printf("%s\n", str); // Output: hello, world!
Performs a case-insensitive string comparison.
Parameters:
str1: Pointer to the first string.
str2: Pointer to the second string.
Returns:
Negative value if str1 is less than str2.
Positive value if str1 is greater than str2.
Zero if str1 is equal to str2.
Difference between the ASCII values if str1 and str2 are different
the first character that is encountered different in the two string,
it's difference is returned. Brace for unexpected output :)
Usage:
int result = str_cmp_ignore_case("Hello", "hello");
printf("%d\n", result); // Output: 0
Finds the first occurrence of a substring in a string.
Parameters:
str: Pointer to the original string.
sub: Pointer to the substring to search for.
Returns:
Index of the first occurrence of sub in str.
-1 if sub is not found in str.
Usage:
int index = str_find("hello, world!", "world");
printf("%d\n", index); // Output: 7
Finds the last occurrence of a substring in a string.
Parameters:
str: Pointer to the original string.
sub: Pointer to the substring to search for.
Returns:
Index of the last occurrence of sub in str.
-1 if sub is not found in str.
Usage:
int index = str_rfind("hello, world!", "o");
printf("%d\n", index); // Output: 8
Converts a string to an integer.
Parameters:
str: Pointer to the string to be converted.
Returns:
The integer value represented by the string.
Usage:
int num = str_to_int("123");
printf("%d\n", num); // Output: 123
Converts a string to a float.
Parameters:
str: Pointer to the string to be converted.
Returns:
The floating-point value represented by the string.
Usage:
float num = str_to_float("3.14");
printf("%f\n", num); // Output: 3.140000
Converts an integer to a string.
Parameters:
num: The integer to be converted.
Returns:
A pointer to the string representation of the integer.
Usage:
char* str = int_to_str(123);
printf("%s\n", str); // Output: 123
str_free(str);
Converts a float to a string.
Parameters:
num: The float to be converted.
Returns:
A pointer to the string representation of the float.
Usage:
char* str = float_to_str(3.14);
printf("%s\n", str); // Output: 3.140000
str_free(str);
Reverses a string.
Parameters:
str: Pointer to the string to be reversed.
Usage:
char str[] = "hello, world!";
str_reverse(str);
printf("%s\n", str); // Output: !dlrow ,olleh
Trims whitespace characters from the beginning and end of a string.
Parameters:
str: Pointer to the string to be trimmed.
Usage:
char str[] = " hello, world! ";
str_trim(str);
printf("%s\n", str); // Output: hello, world!
Formats a string using a format string and variable arguments.
Parameters:
format: The format string.
...: Variable arguments to be formatted.
Returns:
A pointer to the formatted string.
Usage:
char* formatted = str_format("%s %d %.2f", "Hello", 123, 3.14159);
printf("%s\n", formatted); // Output: Hello 123 3.14
str_free(formatted);
Functions that returns the count of vowels in the string.
Parameters:
str: The string to find numbers in.
Returns:
Count of numbers in the string.
Usage:
char strin = "This is a test string 1234";
int num = num_str(strin);
printf("Count of numbers: %d", num);
Function that returns the vowels in the string
Parameters:
str: The string to find vowels in.
Returns:
Count of vowels in the string.
Usage:
char strin = "This is a test string 1234";
int vowels = str_vow(strin);
Function that returns the count of consonants in the string.
Parameters:
str: The string to find consonants in.
Returns:
Count of number of consonants in the string.
Usage:
char strin = "This is a test string 1235";
int consonants = str_conso(strin);