Skip to main content
Version: 2.11

Decode Uri Component

Decodes a URI or URI component

Description

Calls the Javascript <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURI" target="_blank">decodeURI</a> or <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent" target="_blank">decodeURIComponent</a> function.

Example

This%20has%20a%20%25%20character%20 is decoded into This has a % character

Inputs

  • str (String): The URI to be decoded.
  • entire URL (Boolean): If true, decodeURI is called.

Outputs

  • decoded (String): The decoded URI.
  • Error Flow (Error Flow): Triggered by URI malformed input