Skip to content

wouterbeek/prolog_uriparser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.