ll.UnescapeURL

ll.UnescapeURL(URL: string) : string

Returns the string that is the URL unescaped, replacing "%20" with spaces, etc., version of URL. This function can output raw UTF-8 strings.

Example

ll.UnescapeURL('test')
{
  "def": "func",
  "desc": "Returns the string that is the URL unescaped, replacing \"%20\" with spaces, etc., version of URL.\nThis function can output raw UTF-8 strings.",
  "energy": 10,
  "sleep": 0,
  "pure": true,
  "link": "https://wiki.secondlife.com/wiki/LlUnescapeURL",
  "name": "UnescapeURL",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "string"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "URL",
          "desc": "",
          "type": [
            "string"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll