csv:from-string
csv:from-string netlogostring csv:from-string netlogostring 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]]