csv:from-string
csv:from-string string csv:from-string string delimiter
Parses a string representation of one or more CSV rows and returns it as a list of lists of values. For example:
observer> show csv:from-string "1,two,3\nfour,5,true"
observer: [[1 "two" 3] ["four" 5 true]]
Take me to the full CSV Extension Dictionary