Hi,
The
parse-xmlgeneric function processes XML input, returning a list of XML tags, attributes, and text. The :pxml module is loaded with the form
(require :pxml). Symbols naming functionality in the module are in the net.xml.parser package. Examples in this document assume
(use-package :net.xml.parser) has been evaluated.
Here is a simple example:
(parse-xml "<item1><item2 att1='one'/>this is some text</item1>")
-->((item1 ((item2 att1 "one")) "this is some text")) The output format is known as LXML (Lisp XML) format.
web developers atlanta