Examples of delimited files
Use the examples as models to specify your own delimited files.
Example 1: Delimited file with delimited character strings
The following figure shows an example of a delimited file with delimited character strings. In this example, the column delimiter is a comma (,). Because the character strings contain the column delimiter character, they must be delimited with character string delimiters. In this example, the character string delimiter is a double quotation mark (").
"Smith, Bob",4973,15.46
"Jones, Bill",12345,16.34
"Williams, Sam",452,193.78Example 2: Delimited file with non-delimited character strings
The following figure shows an example of a delimited file with non-delimited character strings.
In this example, the column delimiter is a semicolon (;). Because the character strings do not
contain the column delimiter character, they do not need to be delimited with character string
delimiters.
Smith, Bob;4973;15.46
Jones, Bill;12345;16.34
Williams, Sam;452;193.78