URL encoding and decoding.(Power Automate Cloud flows)

Japanese version.

Steps

Encoding

The function uriComponent is used in the expression.

If the variable url is set to the string to be encoded, the following expression is used.

uriComponent(variables('url'))

Decoding

The function decodeUriComponent is used in the expression.

If the variable encodedUrl is set to the string to be decoded, the following expression is used.

decodeUriComponent(variables('encodedUrl'))

---

Links

Tips.(Power Automate Cloud flows)