String

This section describes the following string functions:

FunctionDescription

Decode a base 64 string into a string

Converts a base 64 string into a hex string

Returns a substring of the input, using the offsets in bytes of the UTF-8 encoded byte representation. Partial characters and invalid UTF-8 code points are removed from the result

Returns the concatenation of string1, string2, ..., stringN

Casts a string to a date

Joins any number of arrays by index using a MessageFormat pattern

Returns the length of the string

Converts the string to lowercase letters

Pad the input string to the left with a given padding string up until size

Returns the given string without leading whitespaces

Hashes the input using MD5

Parses a string into a timestamp with time zone using a format

Replaces all instances of search with replace in input. If the search is empty, inserts replace in front of every character and at the end of the input

Returns a string with the characters in reverse order

Pad the input string to the right with a given padding string up until size

Returns the given string without trailing whitespaces

Hashes the input using SHA-1

Hashes the input using SHA-256

Hashes the input using SHA3-512

Returns the values sorted in dictionary order

Returns the given string split by the provided delimiter. Does not remove empty entries

Returns the given string split by the provided delimiter

Format any number of inputs into a string using the given format

For each line remove the prefix of control or whitespace characters followed by the given margin char

Remove the given prefix string from the beginning of the string

Remove the given suffix string from the end of the string

Returns the starting position of the first instance of a given substring within a string

Extracts a substring of a certain length starting from a specified point within the given string

Extracts a substring of a certain length starting from a specified point within the given string

Translates the given value using a given dictionary

Returns the given string without leading or trailing whitespaces

Returns the given string without leading or trailing characters

Converts the string to uppercase letters

Returns UUID

Hashes the input using xxHash

Last updated