fedyakov
fedyakov

Reputation: 63

How to read CSV with \", sequence inside quoted character value in R?

Here is a CSV file with two character columns:

"key","value"
"a","\","

All character values are quoted by double quotes. And there is a sequence \", inside one of the values (escaped quote plus delimiter). I cannot correctly read this file neither by read.csv, nor by read_csv from readr, nor by fread from data.table.

Upvotes: 2

Views: 473

Answers (1)

Scarabee
Scarabee

Reputation: 5704

You can use readr's read_delim, which is more general than read_csv:

library(readr)

read_delim('yourfile.csv', 
           delim = ",", 
           escape_double = FALSE, 
           escape_backslash = TRUE)

Upvotes: 1

Related Questions