NetLogo 7.0.0-beta2:

csv:from-row

csv:from-row string csv:from-row string delimiter

Parses the given string as though it were a row from a CSV file and returns it as a list of values. For example:

Quotes can be used when items contain commas:

You can put two quotes in a row to put an actual quote in an entry. If the entry is not quoted, you can just use one quote:

Number-like-entries will be parsed as numbers:

true and false with any capitalization will be parsed as booleans:

To use a different delimiter, you can specify a second, optional argument. Only single character delimiters are supported:

Different types of values can be mixed freely:

Take me to the full CSV Extension Dictionary