About this article
Concat() is a function that joins two pieces of text together. In this article, you will find which syntax to use and give examples of how this can be used.
Prerequisites
|
Syntax
Syntax | {{Concat(Value1, Value2)}} |
Input | text |
Output | concatenated text |
Example 1
Using the Concat() function to join two pieces of text.
Binding | {{Concat("Hello", "World")}} |
Output | "HelloWorld" |
Example 2
Using the Concat() function to join two pieces of text using user profile fields.
Binding | {{Concat(UserProfile.Team, UserProfile.Initials)}} |
Input | Team = "HR", Initials = "JD" |
Output | "HRJD" |
Example 3
Using the Concat() function to join two pieces of text using form fields.
Binding | {{Concat(Form.Subject, Form.Title)}} |
Input | Subject = "Hello", Title = "World" |
Output | "HelloWorld" |
|
Related articles
Comments
0 comments
Article is closed for comments.