lispdoc - results for parse-mime |
(rfc2388:parse-mime source boundary &key recursive-p write-content-to-file (write-content-to-file t) (recursive-p t)) | Function: Parses MIME entities, returning them as a list. Each element in the list is of form: (body headers), where BODY is the contents of MIME part, and HEADERS are all headers for that part. BOUNDARY is a string used to separate MIME entities.
|
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 |