I am writing a simple web scraper in Common Lisp (SBCL) as a training exercise and would like to sort by date. To do this, I will need to parse the dates in the format "MM / DD / YYYY" at universal time.
I could just label the string and pass the bit to encode-universal-time , but I suppose there must be an inline function (or a popular third-party package) for parsing the date. I would really appreciate it if someone recommends :-)
source share