csv
About 1 minData-Type Reference
csv
CSV files (and other character delimited tables)
Description
This data type can be used for not only CSV files but also TSV (tab separated) or any other exotic characters used as a delimiter.
Detail
The CSV parser is configurable via config
(see link below for docs on how to use config
)
» config -> [csv]
{
"comment": {
"Data-Type": "str",
"Default": "#",
"Description": "The prefix token for comments in a CSV table.",
"Dynamic": false,
"Global": false,
"Value": "#"
},
"separator": {
"Data-Type": "str",
"Default": ",",
"Description": "The delimiter for records in a CSV file.",
"Dynamic": false,
"Global": false,
"Value": ","
}
}
Default Associations
- Extension:
csv
- MIME:
application/csv
- MIME:
application/x-csv
- MIME:
text/csv
- MIME:
text/x-csv
Supported Hooks
Marshal()
SupportedReadArray()
Treats each new line as a new array elementReadArrayWithType()
Treats each new line as a new array element, each element is minicsv
fileReadIndex()
Indexes treated as table coordinatesReadMap()
Works against tables such as the output fromps -fe
ReadNotIndex()
Indexes treated as table coordinatesUnmarshal()
SupportedWriteArray()
Writes a new line per array element
See Also
- Define Type (
cast
): Alters the data-type of the previous function without altering its output - Get Nested Element (
[[ Element ]]
): Outputs an element from a nested structure - Inline SQL (
select
): Inlining SQL into shell pipelines - Reformat Data type (
format
): Reformat one data-type into another data-type - Shell Configuration And Settings (
config
): Query or define Murex runtime settings *
(generic): generic (primitive)int
: Whole number (primitive)jsonl
: JSON Linesstr
(string): string (primitive)- index: Outputs an element from an array, map or table
Read more about type hooks
ReadIndex()
(type): Data type handler for the index,[
, builtinReadNotIndex()
(type): Data type handler for the bang-prefixed index,![
, builtinReadArray()
(type): Read from a data type one array element at a timeWriteArray()
(type): Write a data type, one array element at a timeReadMap()
(type): Treat data type as a key/value structure and read its contentsMarshal()
(type): Converts structured memory into a structured file format (eg for stdio)Unmarshal()
(type): Converts a structured file format into structured memory
This document was generated from builtins/types/csv/csv_doc.yaml.