STRING
Last updated
Last updated
Upper Case
The Upper Case converts the input text to uppercase letters and outputs the transformed text.
Lower Case
The Lower Case converts the input text to lowercase letters and outputs the transformed text.
Concat
The Concat combines multiple pieces of information from the input into a single output.
Index Of
The Index of is used to find the index number of a specific character or expression within the incoming information. For example, in the string each character of this description has an index number, the index number of the character "x" is 4.
Replace
The Replace is used to substitute a specified expression with another expression within the input text.
Starts With
The Starts With checks if the incoming expression begins with the assigned text, the output will be 1; otherwise, the output will be 0.
Ends With
The Ends With checks if the incoming expression concludes with the assigned text, the output will be 1; otherwise, the output will be 0.
Substring
The Substring extracts the characters between two specified positions in the incoming expression and outputs the result.