Top
Symfoware Server V12.1.0 Installation and Setup Guide for Client
FUJITSU Software

A.4 CSV File Format

The format of CSV files is based on RFC4180, with the following specifications.

Records

Double quotation marks

Note

An error occurs in the following cases:

  • Each space, tab, or whitespace character is recognized as one character, and will cause a parameter error.

  • A space is entered before or after a field enclosed with double quotation marks.

    "zzz ", "yyy ", " xxx "

  • The number of fields differs between records.

    aaa,bbb
    aaa,bbb,ccc
    aaa,bbb,ccc,ddd

  • Fields enclosed with double quotation marks and fields not enclosed with double quotation marks are both used.

    aaa,"bbb",ccc
    "xxx",yyy,"zzz"

  • The double quotation escape characters are not positioned correctly.

    "aaa","bb"""b","ccc"

  • Double quotation marks enclose the entire field.

    "aaa,bbb,ccc"