list-to-delimited-string

Function

Package: excl

Arguments: list delimiter-string-or-char

This function formats a list of objects into a single string, with delimiter-char-or-string inserted between the objects. The print representation of the objects is used in the resulting string. See delimited-string-to-list.

Examples:

(list-to-delimited-string '("one" "two" "three" #\space) 

-> "one two three"
(list-to-delimited-string '(:foo :bar) ", ") 

-> "FOO, BAR"

The documentation is described in introduction.htm and the index is in index.htm.

Copyright (c) 1998-2000, Franz Inc. Berkeley, CA., USA. All rights reserved.

Created 2000.10.5.