Did you know ... Search Documentation:
Pack prolog_uriparser -- README.md

Prolog binding for uriparser

Prolog binding for the uriparser library.

Dependencies

  1. Install SWI-Prolog.
  2. Install the uriparser library:
apt install liburiparser-dev

Installation

Install this library:

swipl -g 'pack_install(prolog_uriparser)' -t halt

Use

Include the library with the following declaration:

?- [library(uriparser)].

Then parse your first URI:

?- is_uri('https://check /').
false.