URL decode transform action

Use case

You have a string that is URL encoded and you would like to get the original decoded value.

Overview

When given a URL encoded string, this will decode it.

Parameters

Parameter
Description
Required

String

String to URL decode.

Usage

Example: Decode a string

Inputs: String: This-is-%40-test%21

Results output

Results of Example 1:

This-is-@-test!

Last updated

Was this helpful?