csv2tsv

Convert CSV formatted data to TSV format.

This program converts comma-separated value data to tab-separated format.

Copyright (c) 2016-2018, eBay Software Foundation Initially written by Jon Degenhardt

Members

Aliases

NullableSizeT
alias NullableSizeT = Nullable!(size_t, size_t.max)
Undocumented in source.

Functions

csv2tsv
void csv2tsv(InputRange inputStream, OutputRange outputStream, string filename, size_t currFileLineNumber, char csvQuote, char csvDelim, char tsvDelim, string tsvDelimReplacement, NullableSizeT maxRecords)

Read CSV from an input source, covert to TSV and write to an output source.

csv2tsvFiles
void csv2tsvFiles(Csv2tsvOptions cmdopt, string[] inputFiles)

csv2tsvFiles reads multiple files and standard input and writes the results to standard output.

main
int main(string[] cmdArgs)
Undocumented in source. Be warned that the author may not have intended to support it.

Structs

Csv2tsvOptions
struct Csv2tsvOptions

Container for command line options.

Variables

helpText
auto helpText;
Undocumented in source.
helpTextVerbose
auto helpTextVerbose;
Undocumented in source.

Meta