Functions
string_stocks.inc
| Function | Type | Description |
|---|---|---|
| argbreak | stock | Emulates strbreak() using argparse(). |
| char_to_lower | stock | Returns a lowercase character to an uppercase character. |
| char_to_upper | stock | Returns an uppercase character to a lowercase character. |
| explode_string | stock | Breaks a string into pieces and stores each piece into an array of buffers. |
| implode_strings | stock | Joins an array of strings into one string, with a "join" string inserted in between each given string. This function complements ExplodeString. |
| is_str_num | stock | Returns whether a given string contains only digits. This returns false for zero-length strings. |
| remove_filepath | stock | Removes a path from szFilePath leaving the name of the file in szFile for a pMax length. |
| replace_all | stock | Replaces a contained string iteratively. |
| split | stock | It is basically strbreak but you have a delimiter that is more than one character in length. By Suicid3. |
| strbreak | stock | This function has no description. |