0

Text

An overview of text-related functions

 

capitalize

To capitalize the first letter of each word

 

chosen

To return Yes (true) if the given value equals a given selection

 

concat

To return all items of an array in one string

 

contains

To check if a given string contains the exact given match

 

createTextFile

To create a text file with a given name and content

 

extractx

To extract a substring from a given string using a regular expression

 

format

To format a given value

 

html

To return a rich text representation of any value

 

index

To return the first position of appearance of a match in a string starting

 

join

To return a string consisting of all items of a given string array separated by a given separator

 

length

To return the count of all characters in a string or all items in an array

 

lower

To output a string in lower case

 

lpad

To fill the missing space with a given padding at the beginning

 

raw

To return the internal raw text representation of a given value

 

replace

To replace a pattern in a string with a given replace

 

replacex

To replace any "find" with "replace" in a "text"

 

rpad

To fill the missing space of the given padding at the end, if the length of a given string is shorter than a given length

 

slice

To extract a sub-array

 

split

To split a string into an array at each separator

 

string

To convert a given value to a string

 

styled

To return a styled text element

 

substr

To return a new string out of a given text

 

substring

To return a new string out of a given text with a given start and a given end

 

testx

To return Yes (true) if a given text matches a given regular expression

 

text

To convert a value to a string that possibly reflects the format options

 

trim

To remove preceding and following spaces

 

upper

To output a string in the upper case

Reply

null