Text Blocks
Last updated
Last updated
The text blocks handle and manipulate textual information and allow you to work with strings of characters, words, or sentences. Text blocks include operations like joining text, extracting portions of text, changing letter case (e.g., converting to uppercase or lowercase), and finding the length of text strings.
This is the most frequently used text block. It allows you to type text directly into the block or you can leave it empty.
Use this block to join text values together.
The "length of" block returns the character length of a given string as a number.
This block checks if a text string contains a substring and returns true or false.
This block returns the substring at the specified start and end position, where 1 is the first letter of the string. Returns an empty string if the length of text provided is less than the starting position specified.
This block returns the character at the specified position, where 1 is the first letter of the string. Returns an empty string if the length of text given is less than the position specified.
This block returns the first or last position of a substring within a string of text, where 1 is the first letter of the string. Returns 0 if the string does not contain the substring.
This block locates and replaces all occurrences of a substring within a text string. It returns the reformatted text.
This block sets a piece of text to the selected case. It returns the reformatted text.
This block trims blank spaces from the left side, right side, or both sides of a string of text. It returns the reformatted text.
This block evaluates whether the text value is empty and returns true if the text value is empty and false if it is not empty.
The "newline" block is used to add a line break in a piece of text.