Explore more
Functions

String functions

31min

String functions let you modify and transform string data, also known as text. Use a string function to, for example, change capitalization, remove diacritics and accent marks, combine, split, encode, or decode text. Below is a list of supported string functions and a description of each.

ascii

ascii (text; [remove diacritics])

Removes all non-ascii characters from a text string.

Text

Text


base64

base64 (text)

Transforms text to base64.

Text


Combine the toBinary() and toString() functions to transform base64 encoded text to plain text, as seen below:

Text


capitalize

capitalize (text)

Converts the first character in a text string to uppercase.

Text


contains

contains (text; search string)

Verifies if text contains the search string.

Text

Text


decodeURL

decodeURL (text)

Decodes special characters in URL to text.

Text


encodeURL

encodeURL (text)

Encodes special characters in a text to a valid URL address.

escapeHTML

escapeHTML (text)

Escapes all HTML tags in text.

Text


indexOf

indexOf (string; value; [start])

Returns the position of the first occurrence of a specified value in a string. This method returns '-1' if the value searched for never occurs.

Text

Text

Text


length

length (text or buffer)

Returns the length of text string (number of characters) or binary buffer (buffer size in bytes).

Text


lower

lower (text)

Converts all alphabetical characters in a text string to lowercase.

Text


md5

md5 (text)

Calculates the md5 hash of a string.

Text


replace (text; search string; replacement string)

Replaces the search string with the new string.

Text


Regular expressions (enclosed in /.../) can be used as search string with a combination of flags (like gim) appended:

Text


The replacement string can include the following special replacement patterns:

  • $&= Inserts the matched substring
  • $n = Where n is a positive integer less than 100, inserts the nth parenthesized submatch string. Note that this is 1-indexed
Text

Text


Do not use named capture groups like / is (?<number>\d+)/ in the replacement string argument as this will throw an error.

replaceEmojiCharacters

replaceEmojiCharacters (text)

Replaces emoji characters with the new string.

Replace Emoji


sha1

sha1 (text; [encoding]; [key])

Calculates the sha1 hash of a string. If the key argument is specified, sha1 HMAC hash is returned instead. Supported encodings: hex (default), base64 or latin1.

Text


sha256

sha256 (text; [encoding]; [key]; [key encoding])

Calculates the sha256 hash of a string. If the key argument is specified, sha256 HMAC hash is returned instead. Supported encodings: hex (default), base64 or latin1.

Text


sha512

sha512 (text; [output encoding]; [key]; [key encoding])

Calculates the sha512 hash of a string. If the key argument is specified, sha512 HMAC hash is returned instead. Supported encodings: hex (default), base64 or latin1. Supported key encodings: text (default), hex, base64 or binary. When using binary key encoding, a key must be a buffer, not a string.

Text


split

split (text; separator)

Splits a string into an array of strings by separating the string into substrings.

Text


startcase

startcase (text)

Capitalizes the first letter of every word and lower cases all other letters.

Text


stripHTML

stripHTML (text)

Removes all HTML tags from text.

Text


substring

substring (text; start; end)

Returns a portion of a text string between the "start" position and "the end" position.

Text


toBinary

toBinary (value)

Converts any value to binary data. You can also specify encoding as a second argument to apply binary conversions from hex or base64 to binary data.

Text


toString

toString (value)

Converts any value to a string.

Text


trim

trim (text)

Removes space characters at the start or end of the text.

upper

upper (text)

Converts all alphabetical characters in a text string to uppercase.

Text