Text Blocks
Overview
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.
Text Value
This is the most frequently used text block. It allows you to type text directly into the block or you can leave it empty.
Join
Use this block to join text values together.
Length Of
The "length of" block returns the character length of a given string as a number.
Does Contain
This block checks if a text string contains a substring and returns true or false.
Get Substring
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.
Get Letter
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.
Find First/Last Occurrence
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.
Replace All
This block locates and replaces all occurrences of a substring within a text string. It returns the reformatted text.
Set Case
This block sets a piece of text to the selected case. It returns the reformatted text.
Trim Spaces
This block trims blank spaces from the left side, right side, or both sides of a string of text. It returns the reformatted text.
Is Empty
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.
Newline
The "newline" block is used to add a line break in a piece of text.
Last updated