Append Text | TEXT_APPEND

Syntax

TEXT_APPEND( [value], [postfix] )

Parameters

value
The TEXT value to be appended

postfix
A TEXT value to append to the VALUE.

Return Value

A new TEXT value with the POSTFIX appended to the VALUE.

Description

Add a postfix to a TEXT value.

Examples

TEXT_APPEND() # returns ""
TEXT_APPEND("text") # returns "text"
TEXT_APPEND("Insta", "Link.io") # returns "InstaLink.io"
TEXT_APPEND(null) # returns ""
TEXT_APPEND(123, "456") # returns "123456"