Enter the delimiter used in the user-defined delimited file (CSV) to separate data.
A delimiter is a specific character or symbol used to separate pieces of data within a file or string. Delimiters help software systems identify where one field ends and the next begins during data parsing or processing.
Example
CheckNumber,Payee,Amount,Date
12345,John Smith, 150.00,2024-05-28
In this example, the comma (,) is the delimiter. It separates each field:
CheckNumber
Payee
Amount
Date
Common types of delimiters
Delimiter |
Description |
Example |
, |
Comma |
John,Smith,100.00,2024-05-28 |
\t |
Tab (used in TSV files) |
John Smith 100.00 2024-05-28 |
| |
Pipe |
John,Smith|100.00|2024-05-28 |
; |
Semicolon |
John,Smith;100.00;2024-05-28 |
: |
Colon |
John,Smith:100.00:2024-05-28 |
Why delimiters matter
They structure flat files (like .csv or .txt) so that software can read and map files correctly.
Delimiters make it easy to import/export data between systems.
The choice of delimiter depends on the software's requirements and the nature of the data (for example, avoid commas if fields might include commas).
Considerations
If your data contains the delimiter itself (for example, a name like "smith, Jr."), you'll need to quote or escape the data: "Smith, Jr." instead of "Smith, Jr. in a CSV.
Connect applications, supports custom delimiters (you can choose the character).
Copyright © 2025 Caselle, Incorporated. All rights reserved.