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

splitPower Automate (WDL) function reference

Break a string into an array.

Syntax

wdl
split(text, delimiter)

Examples

wdl
split('a,b,c', ',')
["a","b","c"]
wdl
first(split(item()?['Email'], '@'))
The username portion of an email address
wdl
split(triggerBody()?['Tags'], ';')
An array of tag strings

Common mistakes & gotchas

Related Workflow Definition Language functions

From Strings

Used in these tutorials

← Back to the Power Automate (WDL) cheat sheet