Last updated 2 years ago
Was this helpful?
The UrlDecode() function translates an URL to regular text.
UrlDecode()
This function is NOT SQL compatible. For more information about SQL compatibility, see our .
Returns a new text where each special character in text is decoded. Returns Invalid expression if the parameter is not a text.
text
UrlDecode(
)
UrlDecode("\"Line 1\"\n'Line 2'") => "Line 1" 'Line 2'
UrlDecode("\"Line 1\"\n'Line 2'")
a text in URL format.