Cheat Sheets/Power Automate/join
Power Automate (WDL) function

joinPower Automate (WDL) function reference

Join an array into a string.

Syntax

wdl
join(collection, delimiter)

Examples

wdl
join(variables('tags'), ', ')
"x, y, z"
wdl
join(variables('emailList'), ';')
"a@x.com;b@x.com;c@x.com"
wdl
concat('Approvers: ', join(body('Get_items')?['value'], ' and '))
"Approvers: Alex and Priya"

Common mistakes & gotchas

Related Workflow Definition Language functions

From Arrays & collections

Used in these tutorials

← Back to the Power Automate (WDL) cheat sheet