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

replacePower Automate (WDL) function reference

Replace all occurrences.

Syntax

wdl
replace(text, oldText, newText)

Examples

wdl
replace('a-b-c', '-', '/')
"a/b/c"
wdl
replace(triggerBody()?['Path'], '\\', '/')
A path with backslashes swapped for forward slashes
wdl
replace(item()?['Sku'], ' ', '')
The SKU with spaces stripped out

Common mistakes & gotchas

Related Workflow Definition Language functions

From Strings

Used in these tutorials

← Back to the Power Automate (WDL) cheat sheet