Function: PRINC-CSV-TO-STRING

Source

(defun princ-csv-to-string (items)
  (with-output-to-string (csv)
    (princ-csv items csv)))
Source Context