Uri.Parts
Trả về các phần của URI đầu vào tuyệt đối ở dạng bản ghi.
Syntax
Uri.Parts(
absoluteUri as text
) as record
Remarks
Trả về các phần của absoluteUri
đầu vào ở dạng bản ghi, chứa các giá trị như Scheme, Host, Port, Path, Query, Fragment, UserName và Password.
Examples
Example #1
Tìm các phần của URI tuyệt đối "www.adventure-works.com".
Uri.Parts("www.adventure-works.com")
Result:
[
Scheme = "http",
Host = "www.adventure-works.com",
Port = 80,
Path = "/",
Query = [],
Fragment = "",
UserName = "",
Password = ""
]
Example #2
Giải mã chuỗi đuợc mã hóa bằng phần trăm.
let
UriUnescapeDataString = (data as text) as text => Uri.Parts("http://contoso?a=" & data)[Query][a]
in
UriUnescapeDataString("%2Bmoney%24")
Result:
"+money$"
Category
Uri