category
string > string
keyboard_arrow_down
Append string
Adds a specified string to the end of a given string.
Change case
Converts a given string to any of the following cases: camel, capital, constant, dot, inverse, lower, pascal, sentence, slug, snake, space, title, or upper case.
Convert to slug
Converts a given string to a URL slug.
Decode base64
Decodes a base-64 encoded ASCII string that was previously created by a similar routine, such as base64-encode.
Decode URI
Gets the unencoded version of a given encoded Uniform Resource Identifier (URI) that was previously created by a similar routine, such as uri-encode.
Encode base64
Encodes a given string into a base-64 encoded ASCII string.
Encode URI
Encodes a given text string as a valid Uniform Resource Identifier (URI), escaping all characters except for A-Z, a-z, 0-9, -, _, ., !, ~, *, ', (, and ).
Extract section
Extracts a specified section of a given string.
Get character
Returns the character at a specified index in a given string.
Hash MD5
Hashes a given string using the MD5 message-digest algorithm.
Lowercase
Converts all alphabetic characters in a given string to lower case.
Pad end
Pads the end of a given string with another string until it reaches the specified length.
Pad start
Pads the start of a given string with another string until it reaches the specified length.
Prepend string
Adds a specified string to the beginning of a given string.
Remove diacritics
Removes diacritics and accents from a given string.
Repeat string
Returns a new string that consists of a specified number of copies of a given string.
Replace text
Replaces specified text in a given string with other text.
Replace with regex
Replaces specified text in a given string using a regular expression.
Reverse string
Reverses the characters in a given string.
Trim
Removes leading and trailing white space and line terminator characters from a given string.
Trim end
Removes trailing white space and line terminator characters from a given string.
Trim start
Removes leading white space and line terminator characters from a given string.
Uppercase
Converts all alphabetic characters in a given string to upper case.
category
string > array
keyboard_arrow_down
category
string > image
keyboard_arrow_down
category
array > array
keyboard_arrow_down
Alphabetical sort
Sorts the elements of a given array alphabetically.
Compute cartesian product
Computes the cartesian product of given lists of items.
Evaluate math expression
Evaluates a specified math expression.
Filter non-empty
Returns elements from a given array that are not empty.
Filter with regex
Returns elements from a given array that match a specified regular expression.
Natural sort
Sorts the elements of a given array naturally, as expected by humans.
Pick random items
Picks a specified number of random items from a given list.
Remove duplicates
Removes duplicates from a given list.
Reverse array
Reverses the order of items in a given array.
Shuffle array
Randomizes the order of items in a given array.
Sort by length
Sorts the elements of a given array by length.
Sort by syllables
Sorts the elements of a given array by number of syllables.
category
array > string
keyboard_arrow_down