lispdoc - results for parse-header |
(rfc2388:parse-header source &optional start-state) | Function: Parses SOURCE and returs a single MIME header. Header is a list of the form (NAME VALUE PARAMETERS), PARAMETERS is a list of (NAME . VALUE)
|
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 |