Merge pull request #312 from hatarist/decodeurl_ref

Added decodeURLComponent to the reference
This commit is contained in:
alexey-milovidov 2017-01-10 16:06:28 +04:00 committed by GitHub
commit 50623a3912
2 changed files with 24 additions and 0 deletions

View File

@ -5204,6 +5204,18 @@ URLPathHierarchy('https://example.com/browse/CONV-6788') =
]
%%
<h4>decodeURLComponent(URL)</h4>
Returns a URL-decoded URL.
Example:
%%
:) SELECT decodeURLComponent('http://127.0.0.1:8123/?query=SELECT%201%3B') AS DecodedURL;
┌─DecodedURL─────────────────────────────┐
│ http://127.0.0.1:8123/?query=SELECT 1; │
└────────────────────────────────────────┘
%%
===Functions that remove part of a URL.===
If the URL doesn&#39;t have anything similar, the URL remains unchanged.

View File

@ -5297,6 +5297,18 @@ URLPathHierarchy('https://example.com/browse/CONV-6788') =
]
%%
<h4>decodeURLComponent(URL)</h4>
Возвращает декодированный URL.
Пример:
%%
:) SELECT decodeURLComponent('http://127.0.0.1:8123/?query=SELECT%201%3B') AS DecodedURL;
┌─DecodedURL─────────────────────────────┐
│ http://127.0.0.1:8123/?query=SELECT 1; │
└────────────────────────────────────────┘
%%
===Функции, удаляющие часть из URL-а.===
Если в URL-е нет ничего похожего, то URL остаётся без изменений.