APPEND

Joins two or more pieces of text together.

Syntax 

APPEND(text1, text2, ...)

Usage 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 

Event transform
APPEND
Event transform
My Action
Event transform
String Concatenation

Select an action to inspect.

You can also click "Copy actions" and paste them in your Tines story to see how they work.

Was this helpful?