Managing JSON Data with the shasht Common Lisp Library
Parsing JSON Data
The primary mechanism for ingesting and parsing JSON text is the read-json function. It accepts an input source which may be a string, a stream, or nil (defaults to standard input).
(read-json &optional input (eof-error-p t) eof-value single-value-p)
The behavior of the parser is governed by several dynamic variables, all ...
Posted on Thu, 13 Aug 2026 16:19:19 +0000 by taurus5_6
Portable Regular Expression Library for Scheme and Common Lisp: pregexp
pregexp delivers a cross-platform regular expression implementation compatible with R4RS, R5RS, and R6RS Scheme standards, along with a Common Lisp variant. The library provides Perl-compatible pattern syntax including numeric quantifiers, non-greedy matching, capture groups, POSIX character classes, case-insensitive modes, backreferences, alte ...
Posted on Mon, 22 Jun 2026 17:33:47 +0000 by ineedhelpbigtime