convertFromURLEncoded()

The serviceLib.convertFromURLEncoded() system function returns a version of a Universe Resource Locator (URL) that is decoded; for example, the returned string has a space rather than the following combination: %20. You might use this function if a REST service returned a URL and you wished to process the value of a query parameter. This function is the complement of ServiceLib.convertToURLEncoded().

Syntax

ServiceLib.convertFromURLEncoded(url STRING in) 
   returns(output STRING)
url
The valid URL
output
The decoded string

Feedback