Table of Content
HAL Forum
function string UrlDecode (
string EncodedURL)
Description:
Decodes URL-encoded string (Decodes any %## encoding in the given string).
Parameters:
EncodedURL A string with encoded data.
global
procedure OnApplicationStartup() 
begin
  
  stopalert(UrlDecode("%22Hello%20World%20%26%20Goodbye!!!%22"));
  
  return;
end;
Related topics:
««