Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Product Manuals/Stream Descriptors/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,9 @@ Parameter | Default | Description
Separator | "\r\n" | The record separator
SkipHeader | true | The CSV header present?
SkipBlankLines | true | Ignore blank lines
NullValues | ["\N"] | A list of values to be interpreted as "null"
ParseFormulas | true | Interpret Excel-style formulas of the form =XXXX as strings "XXXX"
StripWhitespace | "all" | Remove leading/trailing whitespace ("all"/"leading"/"trailing"/"none")

For example:
``` json
Expand All @@ -486,6 +489,11 @@ Note that the following settings are not
* "QuoteCharacter": (anything other than double quote)
* "Delimiter": (anything other than comma)

The following settings are designed for CSV files exported from Excel:
* "NullValues": ["\N"]
* "ParseFormulas": true
* "StripWhitespace": "all"

### <a name="default-envelope">Default envelope

If the Envelope property is missing, the framing scheme is selected using the
Expand Down