URI¶
Include: Use System\URI.pkg
URI APIs encode and decode URI components, parse URI strings, edit query parameters, render paths, and generate URI strings.
Functions¶
- UriEncodeComponent - Encodes one URI component.
- UriDecodeComponent - Decodes one URI component.
Parser class¶
- cURIParser - Parses, edits, and renders URI components.
Example¶
Handle hoParser
String sValue
Get Create (RefClass(cURIParser)) to hoParser
Send ParseURI of hoParser "https://example.com/docs?q=data"
Get QueryParam of hoParser "q" to sValue
Send Destroy of hoParser