Função unescapeString() WMLScript

A função unescapeString() substitui os sequências de escape no URL por caracteres.

Sintaxe

n = URL.unescapeString(string)
Componentes Descrição
n String retornada pela função.
string Uma string.

Exemplo

var a=URL.unescapeString("http%3a%2f%2fw3s.com%2wml");

Resultado

a = "http://w3s.com/wml"