APPEND
Joins two or more pieces of text together.
Categories: Text
Syntax
APPEND(text1, text2, ...)
Examples
Example 1
Input
1
{
2
"my_action": {
3
"message": "/my/fancy/url"
4
}
5
}
Formula
APPEND(my_action.message, ".html")
Output
"/my/fancy/url.html"
Example 2: Takes two or more strings as arguments.
Formula
APPEND("app", "end", "ing")
Output
"appending"
Example 3: Alternatively, you can use the concatenation operator:
Formula
"/my/fancy/url" & ".html"
Output
"/my/fancy/url.html"
Sample actions
Select an action to inspect
You can also click "Copy actions" and paste them in your Tines story to see how they work.