parse_url()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
剖析絕對 URL string
,並傳 dynamic
回 物件包含 URL 元件。
已被取代的別名: parseurl()
語法
parse_url(
url)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
url | string |
✔️ | 絕對 URL,包括其配置或 URL 的查詢部分。 例如,使用 絕對 https://bing.com 而非 bing.com 。 |
傳回
動態類型的物件,其中包含 URL 元件:Scheme、Host、Port、Path、Username、Password、Query Parameters、Fragment。
範例
print Result=parse_url("scheme://username:password@host:1234/this/is/a/path?k1=v1&k2=v2#fragment")
輸出
結果 |
---|
{“Scheme”:“scheme”, “Host”:“host”, “Port”:“1234”, “Path”:“this/is/a/path”, “Username”:“username”, “Password”:“password”, “Query Parameters”:“{”k1“:”v1“, ”k2“:”v2“}”, “Fragment”:“fragment”} |