chickadee » string-utils » string-zip

string-zip PARTS PUNCSprocedure

Returns a string formed from the concatenation of the PARTS and the interspersion of the PUNCS.

PARTS
(list-of string) ; version components.
PUNCS
(list-of string) ; version component separators.
(string-zip ("a" "2" "c") ("." ","))
;=> "a.2,c"