To Upper Case

Convert a text to upper case.

To Upper Case

Arguments

NameDescriptionRequired
TextText to convert to upper case.Yes

To Lower Case

Convert a text to lower case.

To Lower Case

Arguments

NameDescriptionRequired
TextText to convert to lower case.Yes

Split

Split a text into an array of strings.

Split

Arguments

NameDescriptionRequired
TextText to split.Yes
SeparatorSeparator to split on.Yes

Substring

Get a substring from a text.

Substring

Arguments

NameDescriptionRequired
TextText to get a substring from.Yes
StartThe start index (inclusive) of the substring. Index is zero-based.Yes
EndThe end index (exclusive) of the substring. Index is zero-based.Yes

Find all

Find all occurrences of a string in a text.

Find all

Arguments

NameDescriptionRequired
TextText to search.Yes
SubstringSubstring to search for.Yes

Find all regex

Find all occurrences of a regex in a text.

Find all regex

Arguments

NameDescriptionRequired
TextText to search.Yes
RegexRegex to search for.Yes

Match regex

Match a regex in a text.

Match regex

Arguments

NameDescriptionRequired
TextText to search.Yes
RegexRegex to search for.Yes

Replace all

Replace all occurrences of a string in a text.

Replace all

Arguments

NameDescriptionRequired
TextText to search.Yes
SubstringSubstring to search for.Yes
ReplacementReplacement string.Yes

Replace all regex

Replace all occurrences of a regex in a text.

Replace all regex

Arguments

NameDescriptionRequired
TextText to search.Yes
RegexRegex to search for.Yes
ReplacementReplacement string.Yes

Text decode

Decode a text.

Text decode

Arguments

NameDescriptionRequired
DataData to decode.Yes
CharsetThe IANA charset name; e.g. UTF-8, US-ASCII, ISO-8859-2. Case-insensitive. Default: UTF-8.Yes

Text encode

Encode a text.

Text encode

Arguments

NameDescriptionRequired
TextText to encode.Yes
CharsetThe IANA charset name; e.g. UTF-8, US-ASCII, ISO-8859-2. Case-insensitive. Default: UTF-8.Yes