URL encoding converts characters into a format that can be transmitted over the Internet.
The syntax for the DecodeText function is:
URLEncode(input)
URLDecode(input)
input - the string to be URL encoded/decoded
The URLEncode/URLDecode function returns a string.
Flow 6.14
Let's look at some URLDecode function examples and explore how to use the URLDecode function.
Last updated 4 years ago
Was this helpful?
URLEncode('https://www.novacura.com') Result: https%3a%2f%2fwww.novacura.com URLDecode('https%3a%2f%2fwww.novacura.com') Result: https://www.novacura.com