lispdoc - results for parse-xml |
(s-xml:parse-xml stream &key (output-type lxml)) | Function: Parse a character stream as XML and generate a DOM of output-type, defaulting to :lxml
|
(s-xml:parse-xml-dom stream output-type) | Function: Parse a character stream as XML and generate a DOM of output-type
|
(s-xml:parse-xml-file filename &key (output-type lxml)) | Function: Parse a character file as XML and generate a DOM of output-type, defaulting to :lxml
|
(s-xml:start-parse-xml stream &optional (state (make-instance 'xml-parser-state))) | Function: Parse and return a toplevel XML element from stream, using parser state
|
(s-xml:parse-xml-string string &key (output-type lxml)) | Function: Parse a string as XML and generate a DOM of output-type, defaulting to :lxml
|
parse-error | Undocumented
|
| Mentioned in: HyperSpec - Condition Type PARSE-ERROR | |
(parse-integer string &key (start 0) end (radix 10) junk-allowed) | Function: Examine the substring of string delimited by start and end (default to the beginning and end of the string) It skips over whitespace characters and then tries to parse an integer. The radix parameter must be between 2 and 36.
|
Example:(defun parse-year (year) (when year (parse-integer year))) | Mentioned in: CLtL2 - 22.2.1. Input from Character Streams HyperSpec - Function PARSE-INTEGER PCL - improving the user interaction PCL - inserting values PCL - other database operations PCL - query parameters |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |