How to specify a tab delimiter in PapaParse?

2.7k Views Asked by At

I receive a delimiter like so:

var delimiter = process.argv[3];
if (!delimiter) {
  console.log('Please specify a delimiter as the second argument in the CLI');
  process.exit(0);
}
console.log('with delimiter:', delimiter);

And I attempt to use it with PapaParse like this:

  Papa.parse(fs.createReadStream(__dirname + relativePathToFile, 'utf8'), {
    delimiter: delimiter,
    header: true,
    skipEmptyLines: true,

But regardless of passing in \t or \\t from CLI, neither works. What value exactly does PapaParse want us to pass for it to be identified as the tab delimiter?

3

There are 3 best solutions below

0
On

I've had success passing in \t directly, like so: delimiter: '\t' But I'm not sure how that translates to pulling it from a function.

0
On

Specify spaces as required, for tab delimiter should have 5 spaces

0
On

It's ugly, but it should work

Papa.parse(fs.createReadStream(__dirname + relativePathToFile, 'utf8'), {
    delimiter: delimiter === "\\t" ? "\t" : delimiter,
    header: true,
    skipEmptyLines: true,