The alphabet
The alphabet and digits
Is text all uppercase? returns false if any non-alpha characters are present
Splits camelCased and PascalCased text and separates by a space. Ex: "thisIsAColumn" -> "this Is A Column"
Filters out all non-ascii characters from a string
Grabs the substring between the specified 'after' and 'before' strings
Check if a string contains any of the keywords from a given list
Returns the number of occurrences of a substring (needle) within another string (haystack).
Grabs the substring between the specified 'after' and 'before' strings
Grabs the substring between the specified 'after' and 'before' strings
Grabs the first substring from the specified 'From' up to the 'UpTo' string
Allows doing fuzzy string comparisons akin to SQL's LIKE
Function removes double presents of specified characters.By default remove double spaces and leading + ending spaces. Like TRIM function in Excel
Remove all uicode symbols from text
Do multiple text replacements in one function call, passing the replacements as a list of lists