CSV files do not always rely on commas. Many exports use semicolons, pipes, or tabs (TSV) to avoid conflict with values. Our converter supports customizable delimiters, allowing developers to switch between Comma, Tab, Pipe, and Semicolon. If your generated JSON elements are ultimately passed as query strings or browser parameters, make them safe with our
URL Encoder / Decoder. Here is how to configure a dynamic parser delimiter:
/* Delimiter options list */
const delimiters = {
comma: ",",
tab: "\t",
pipe: "|",
semicolon: ";"
};
// Toggle the parameter dynamically inside your split rules