- The original RFC 3986 "Uniform Resource Identifier (URI): Generic Syntax" https://tools.ietf.org/html/rfc3986
- Updated by RFC 8820 "URI Design and Ownership": https://tools.ietf.org/html/rfc8820
Example:
?- use_module(library(uri)). ?- uri_components('https://www.example.com/snoopy/the/dog?location=doghouse',Components). Components = uri_components( https, 'www.example.com', '/snoopy/the/dog', 'location=doghouse', _11436).