1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-20 05:45:53 +02:00
libcproject/lib/string.h

241 lines
5.4 KiB
C
Raw Normal View History

#ifndef __LIBCPROJECT_STRING__
#define __LIBCPROJECT_STRING__
2023-01-05 19:28:05 +01:00
#include <errno.h>
2023-01-05 19:28:05 +01:00
#include <stdbool.h>
2023-01-07 19:38:01 +01:00
#include <stdio.h>
2023-01-05 19:28:05 +01:00
#include <stdlib.h>
2023-01-07 19:38:01 +01:00
#include "character.h"
#include "convert.h"
#include "hash_map.h"
2023-06-25 15:07:34 +02:00
#include "types.h"
2023-06-25 15:01:25 +02:00
2023-01-05 19:28:05 +01:00
/**
* @brief Return the length of a string (excluding '\0').
*
* @param string
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
size_t string_get_length(const string_t string);
2023-01-05 19:28:05 +01:00
/**
* @brief Converts all the alphabetic characters in a string to uppercase.
*
* NOTE: Mutates the string.
*
* @param string
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
void string_to_uppercase(string_t string);
2023-01-05 19:28:05 +01:00
/**
* @brief Converts all the alphabetic characters in a string to lowercase.
*
* NOTE: Mutates the string.
*
* @param string
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
void string_to_lowercase(string_t string);
2023-01-05 19:28:05 +01:00
/**
* @brief Replace all the occurrences of search value into replace value in the string.
*
* NOTE: Mutates the string.
*
* @param string
2023-06-25 21:32:16 +02:00
* @param search A character search value.
* @param replace A character containing the text to replace for match.
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
void string_replace(string_t string, char search, char replace);
2023-01-05 19:28:05 +01:00
/**
* @brief Removes all `character` from the start of a string.
2023-01-05 19:28:05 +01:00
*
* NOTE: Mutates the string.
*
* @param string
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
void string_trim_start(string_t string, char character);
2023-01-05 19:28:05 +01:00
/**
* @brief Removes all `character` from the end of a string.
2023-01-05 19:28:05 +01:00
*
* NOTE: Mutates the string.
*
* @param string
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
void string_trim_end(string_t string, char character);
2023-01-05 19:28:05 +01:00
/**
* @brief Removes all `character` from the start and end of a string.
2023-01-05 19:28:05 +01:00
*
* NOTE: Mutates the string.
*
* @param string
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
void string_trim(string_t string, char character);
2023-01-05 19:28:05 +01:00
/**
* @brief Return the copy of a string.
*
* @param string
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
string_t string_copy(const string_t string);
2023-01-05 19:28:05 +01:00
/**
* @brief Capitalizes the string.
*
* NOTE: Mutates the string.
*
* @param string
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
void string_capitalize(string_t string);
2023-01-05 19:28:05 +01:00
/**
* @brief Returns the total number of occurrences of the given character in the string.
*
* @param string
2023-01-05 19:28:05 +01:00
* @param character
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
size_t string_total_occurrences_of_character(string_t string, char character);
2023-01-05 19:28:05 +01:00
/**
* @brief Reverse the characters in a string.
2023-01-05 19:28:05 +01:00
*
* NOTE: Mutates the string.
*
* @param string
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
void string_reverse(const string_t string);
2023-01-05 19:28:05 +01:00
/**
* @brief Check if two strings are equals.
*
* @param string1
* @param string2
2023-01-07 19:38:01 +01:00
* @return true if the strings are equals, false otherwise.
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
bool string_equals(const string_t string1, const string_t string2);
2023-01-05 19:28:05 +01:00
/**
* @brief Check if the string is a integer.
*
* @param string
2023-01-07 19:38:01 +01:00
* @return true if the string is a integer, false otherwise.
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
bool string_get_is_integer(const string_t string);
2023-01-05 19:28:05 +01:00
/**
* @brief Split a string into substrings using the specified separator and return them as an array and update the pointer `result_size` to the resulting size of the created array.
*
* @param string
2023-01-05 19:28:05 +01:00
* @param separator
2023-06-25 21:32:16 +02:00
* @param result_size
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
string_t* string_split(const string_t string, char separator, size_t* result_size);
2023-01-05 19:28:05 +01:00
/**
* @brief Adds all the elements of an array into a string, separated by the specified separator string.
*
* @param array
* @param separator
2023-06-25 21:32:16 +02:00
* @param array_length
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
string_t string_join(string_t* array, const char separator, size_t array_length);
2023-01-05 19:28:05 +01:00
/**
* @brief Concatenate two strings.
*
* @param string1
* @param string2
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
string_t string_concatenate(string_t string1, string_t string2);
2023-01-05 19:28:05 +01:00
/**
* @brief Check if a string contains only unique characters.
*
* @param string
2023-01-07 19:38:01 +01:00
* @return true if string contains only unique characters, false otherwise.
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
bool string_get_has_unique_characters(const string_t string);
2023-01-05 19:28:05 +01:00
/**
* @brief Returns the part of the string between the start and end indexes (both included).
*
* @param string
2023-01-05 19:28:05 +01:00
* @param index_start
* @param index_end
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
string_t string_substring(const string_t string, size_t index_start, size_t index_end);
2023-01-05 19:28:05 +01:00
/**
* @brief Check if a string contains a substring.
*
* @param string
2023-01-05 19:28:05 +01:00
* @param substring
2023-01-07 19:38:01 +01:00
* @return true if the string contains the substring, false otherwise.
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
bool string_get_is_substring(const string_t string, const string_t substring);
2023-01-05 19:28:05 +01:00
/**
* @brief Format a number to a string with specified separator.
*
2023-06-25 21:32:16 +02:00
* @param number
* @param separator
* @since v1.0.0
2023-06-25 21:32:16 +02:00
* @code
* string_get_formatted_number(1000, " ") // "1 000"
* string_get_formatted_number(1000, ",") // "1,000"
* @endcode
2023-01-05 19:28:05 +01:00
*/
string_t string_get_formatted_number(const long long number, string_t separator);
2023-01-05 19:28:05 +01:00
/**
* @brief Returns a pointer to the last occurrence of character in the string.
*
* @param string
2023-01-05 19:28:05 +01:00
* @param character
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
string_t string_get_last_occurence_of_character(const string_t string, char character);
2023-01-05 19:28:05 +01:00
/**
* @brief Check if a string starts with a substring.
*
* @param string
2023-01-05 19:28:05 +01:00
* @param prefix
2023-01-07 19:38:01 +01:00
* @return true if the string starts with the substring, false otherwise.
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
bool string_starts_with(const string_t string, const string_t prefix);
2023-01-05 19:28:05 +01:00
/**
* @brief Check if a string ends with a substring.
*
* @param string
2023-01-05 19:28:05 +01:00
* @param prefix
2023-01-07 19:38:01 +01:00
* @return true if the string ends with the substring, false otherwise.
* @since v1.0.0
2023-01-05 19:28:05 +01:00
*/
bool string_ends_with(const string_t string, const string_t prefix);
2023-01-05 19:28:05 +01:00
#endif