Manual Pages for UNIX Darwin command on man csv
MyWebUniversity

Manual Pages for UNIX Darwin command on man csv

csv(n) CSV processing csv(n)

NAME

csv - Procedures to handle CSV data.

SYNOPSIS

package require TTccll 88..33 package require ccssvv ??00..55..11?? ::::ccssvv::::jjooiinn values {sepChar ,} ::::ccssvv::::jjooiinnlliisstt values {sepChar ,}

::::ccssvv::::rreeaadd22mmaattrriixx ?-aalltteerrnnaattee? chan m {sepChar ,} {expand none}

::::ccssvv::::rreeaadd22qquueeuuee ?-aalltteerrnnaattee? chan q {sepChar ,}

::::ccssvv::::rreeppoorrtt cmd matrix ?chan?

::::ccssvv::::sspplliitt ?-aalltteerrnnaattee? line {sepChar ,}

::::ccssvv::::sspplliitt22mmaattrriixx ?-aalltteerrnnaattee? m line {sepChar ,} {expand none}

::::ccssvv::::sspplliitt22qquueeuuee ?-aalltteerrnnaattee? q line {sepChar ,}

::::ccssvv::::wwrriitteemmaattrriixx m chan {sepChar ,} ::::ccssvv::::wwrriitteeqquueeuuee q chan {sepChar ,}

DESCRIPTION

The ccssvv package provides commands to manipulate information in CSV FFOORR-

MMAATT (CSV = Comma Separated Values). CCOOMMMMAANNDDSS The following commands are available: ::::ccssvv::::jjooiinn values {sepChar ,}

Takes a list of values and returns a string in CSV format con-

taining these values. The separator character can be defined by the caller, but this is optional. The default is ",". ::::ccssvv::::jjooiinnlliisstt values {sepChar ,}

Takes a list of lists of values and returns a string in CSV for-

mat containing these values. The separator character can be defined by the caller, but this is optional. The default is ",". Each element of the outer list is considered a record, these are separated by newlines in the result. The elements of each record are formatted as usual (via ::::ccssvv::::jjooiinn).

::::ccssvv::::rreeaadd22mmaattrriixx ?-aalltteerrnnaattee? chan m {sepChar ,} {expand none}

A wrapper around ::::ccssvv::::sspplliitt22mmaattrriixx (see below) reading CSV-

formatted lines from the specified channel (until EOF) and adding them to the given matrix. For an explanation of the expand argument see ::::ccssvv::::sspplliitt22mmaattrriixx.

::::ccssvv::::rreeaadd22qquueeuuee ?-aalltteerrnnaattee? chan q {sepChar ,}

A wrapper around ::::ccssvv::::sspplliitt22qquueeuuee (see below) reading CSV-for-

matted lines from the specified channel (until EOF) and adding them to the given queue. ::::ccssvv::::rreeppoorrtt cmd matrix ?chan? A report command which can be used by the matrix methods ffoorrmmaatt 22ssttrriinngg and ffoorrmmaatt 22cchhaann. For the latter this command delegates the work to ::::ccssvv::::wwrriitteemmaattrriixx. cmd is expected to be either pprriinnttmmaattrriixx or pprriinnttmmaattrriixx22cchhaannnneell. The channel argument, chan, has to be present for the latter and must not be present for the first.

::::ccssvv::::sspplliitt ?-aalltteerrnnaattee? line {sepChar ,}

converts a line in CSV format into a list of the values con-

tained in the line. The character used to separate the values from each other can be defined by the caller, via sepChar, but this is optional. The default is ",".

If the option -aalltteerrnnaattee is spcified a slightly different syntax

is used to parse the input. This syntax is explained below, in the section FFOORRMMAATT.

::::ccssvv::::sspplliitt22mmaattrriixx ?-aalltteerrnnaattee? m line {sepChar ,} {expand none}

The same as ::::ccssvv::::sspplliitt, but appends the resulting list as a new row to the matrix m, using the method aadddd rrooww. The expansion mode specified via expand determines how the command handles a matrix with less columns than contained in line. The allowed modes are:

nnoonnee This is the default mode. In this mode it is the respon-

sibility of the caller to ensure that the matrix has enough columns to contain the full line. If there are not enough columns the list of values is silently truncated at the end to fit. eemmppttyy In this mode the command expands an empty matrix to hold all columns of the specified line, but goes no further. The overall effect is that the first of a series of lines determines the number of columns in the matrix and all following lines are truncated to that size, as if mode nnoonnee was set. aauuttoo In this mode the command expands the matrix as needed to hold all columns contained in line. The overall effect is that after adding a series of lines the matrix will have enough columns to hold all columns of the longest line encountered so far.

::::ccssvv::::sspplliitt22qquueeuuee ?-aalltteerrnnaattee? q line {sepChar ,}

The same as ::::ccssvv::::sspplliitt, but appending the resulting list as a single item to the queue q, using the method ppuutt. ::::ccssvv::::wwrriitteemmaattrriixx m chan {sepChar ,} A wrapper around ::::ccssvv::::jjooiinn taking all rows in the matrix m and writing them CSV formatted into the channel chan. ::::ccssvv::::wwrriitteeqquueeuuee q chan {sepChar ,} A wrapper around ::::ccssvv::::jjooiinn taking all items in the queue q (assumes that they are lists) and writing them CSV formatted into the channel chan. FFOORRMMAATT The format of regular CSV files is specified as

[1] Each record of a csv file (comma-separated values, as exported

e.g. by Excel) is a set of ASCII values separated by ",". For other languages it may be ";" however, although this is not important for this case as the functions provided here allow any separator character. [2] If and only if a value contains itself the separator ",", then it (the value) has to be put between "". If the value does not contain the separator character then quoting is optional.

[3] If a value contains the character ", that character is repre-

sented by "". [4] The output string "" represents the value ". In other words, it is assumed that it was created through rule 3, and only this rule, i.e. that the value was not quoted. An alternate format definition mainly used by MS products specifies that the output string "" is an representatation of the empty string. In other words, it is assumed that the output was generated out of the empty string by quoting it (i.e. rule 2), and not through rule 3. This is the only difference between the regular and the alternate format. The alternate format is activated through specification of the option

-aalltteerrnnaattee to the various split commands.

EEXXAAMMPPLLEE Using the regular format the record 123,"123,521.2","Mary says ""Hello, I am Mary""","" is parsed into the items a) 123 b) 123,521.2 c) Mary says "Hello, I am Mary" d) (the empty string) Using the alternate format the result is a) 123 b) 123,521.2 c) Mary says "Hello, I am Mary" d) " instead. As can be seen only item (d) is different, now a " instead of the empty string.

SEE ALSO

matrix, queue KKEEYYWWOORRDDSS

csv, matrix, package, queue, tcllib

COPYRIGHT Copyright (c) 2002 Andreas Kupries

csv 0.5.1 csv(n)




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™