text
25 Articles in this category
- DarkLight
text
25 Articles in this category
- DarkLight
Capitalize
Capitalizes each word in a specified text so that they start with a upper-case letter, leaving all other letters lower-case.
Function signature
CAPITALIZE(text: String) => String
Examples
Updated on : 19 May 2022
Contains
Returns true if the given text contains the given slice of text, otherwise returns false .
Function signature
CONTAINS(text: String, pattern: String) => Boolean
Examples
Updated on : 19 May 2022
Join
Joins a list of component texts into a single concatenated text, with each component text separated by the optional separator parameter.
Function signature
JOIN(values: Array, separator: String) => String
Examples
Updated on : 19 May 2022
Left_strip
Returns text with number of characters stripped from the beginning of the text.
Function signature
LEFT_STRIP(text: String, number: Number) => String
Examples
Updated on : 19 May 2022
Length
Returns the number of characters in the given text.
For measuring the length for a list, use COUNT instead.
Function signature
LENGTH(text: String) => Number
Examples
Updated on : 19 May 2022
Lowercase
Converts each character of the given text to lower-case letters.
Function signature
LOWERCASE(text: String) => String
Examples
Updated on : 19 May 2022
Matches_regex
Returns true if text is matched by the given regular expression pattern, otherwise returns false .
Function signature
MATCHES_REGEX(text: String, regex: String) => Boolean
Examples
Updated on : 19 May 2022
Replace_all
Returns a new text where all occurrences of the given text are replaced with the given replacement text.
Function signature
REPLACE_ALL(text: String, sliceoftext: String, newsliceoftext: String) => String
Examples
Updated on : 19 May 2022
Replace_url_parameters
Sets the given URL texts query parameters to the given parameter object.
Function signature
REPLACE_URL_PARAMETERS(baseurl: String, parametersobject: Object) => String
Examples
Updated on : 19 May 2022