Convert a text to upper case.
Name | Description | Required |
---|---|---|
Text | Text to convert to upper case. | Yes |
Convert a text to lower case.
Name | Description | Required |
---|---|---|
Text | Text to convert to lower case. | Yes |
Split a text into an array of strings.
Name | Description | Required |
---|---|---|
Text | Text to split. | Yes |
Separator | Separator to split on. | Yes |
Get a substring from a text.
Name | Description | Required |
---|---|---|
Text | Text to get a substring from. | Yes |
Start | The start index (inclusive) of the substring. Index is zero-based. | Yes |
End | The end index (exclusive) of the substring. Index is zero-based. | Yes |
Find all occurrences of a string in a text.
Name | Description | Required |
---|---|---|
Text | Text to search. | Yes |
Substring | Substring to search for. | Yes |
Find all occurrences of a regex in a text.
Name | Description | Required |
---|---|---|
Text | Text to search. | Yes |
Regex | Regex to search for. | Yes |
Match a regex in a text.
Name | Description | Required |
---|---|---|
Text | Text to search. | Yes |
Regex | Regex to search for. | Yes |
Replace all occurrences of a string in a text.
Name | Description | Required |
---|---|---|
Text | Text to search. | Yes |
Substring | Substring to search for. | Yes |
Replacement | Replacement string. | Yes |
Replace all occurrences of a regex in a text.
Name | Description | Required |
---|---|---|
Text | Text to search. | Yes |
Regex | Regex to search for. | Yes |
Replacement | Replacement string. | Yes |
Decode a text.
Name | Description | Required |
---|---|---|
Data | Data to decode. | Yes |
Charset | The IANA charset name; e.g. UTF-8, US-ASCII, ISO-8859-2. Case-insensitive. Default: UTF-8. | Yes |
Encode a text.
Name | Description | Required |
---|---|---|
Text | Text to encode. | Yes |
Charset | The IANA charset name; e.g. UTF-8, US-ASCII, ISO-8859-2. Case-insensitive. Default: UTF-8. | Yes |