saos-tm.extractor.judgment-links
Module contains algorithm for extraction of references to Polish case law. These references appear in form of case numbers.
extract-judgment-links
(extract-judgment-links s)
Extracts links to referenced judgments in the form of case numbers present in a given string s
.
The result is a set of strings which are case numbers.
Example:
(extract-judgment-links "wyroki Tw 72/02 i Tw 25/02")
#{"Tw 72/02" "Tw 25/02"}
It uses two types of functions: universal and specific.
The first is called extract-case-nmbs-universal
and looks for text like “sygnatura akt” that indicates appearance of case number in text.
Example of function that represent the second type is extract-case-nmbs-sn
. The functions of second type find case numbers in specific formats.