How to concat two string values in Vflow2.0?

How to concat two string values in Vflow2.0?

1 Like

For this, we can use the CONCAT function.

CONCAT(“Decimal”,” Technologies”)
Example - DecimalTechnologies

CONCAT(“Decimal”,” “,”Technologies”)
Example - Decimal Technologies

CONCAT(“getVal(‘tempObject.test’)”,“getVal(‘tempObject.pageId’)”)

3 Likes