url.decode
url.decode
Function
Percent decode the current text.
Syntax
url(text).decode()
Parameters
None.
Return value
| Type | Description |
|---|---|
| String | Decoded text. |
Code Example
result = url('BT%20Lang').decode() // Output: BT Lang print result
Notes
- Illegal UTF-8 is returned as a lossy string.