-
Someone gave me a UTF32 CSV exported from Excel. The export included lots of embedded nulls, which are normal in UTF32, but which PapaParse didn't strip out. It also had a URL with a leading newline. …
zioth updated
2 years ago
-
Hi,
I have a csv like file where the spacing between the columns is dynamic depending on the values. There's always a value for each column but I can't depend on each value being separated by the s…
-
Hi everyone,
First of all, big thanks for this great library that's been a big help in my work :raised_hands:
I noticed when going from 5.3.2 to 5.4.1 that some CSV files can't be parsed succes…
-
I am trying to use PapaParse in the browser to parse a file using:
```
Papa.parse(fileInput.files[0], {
complete: function(results) {
console.log(results);
}
});
```
I am bundling my javas…
-
Create Front-end using nextjs, which should get data from csv and update the data into the frontend
-
is that level of performance possible because of WASM? I was really hoping that the effort continues because our current project could really leverage this library, we are currently using Papaparse bu…
-
Hi,
I'm using Papaparse on the backend using NodeJS, I'm facing some strange error something related firefox while parsing on the backend. Can you please suggest what was wrong ??
Using Postman …
-
Using papaparse 5.3.0 version.
Having an empty space in front of quotation when using field such as address with multiple fields separated by common delimiter does not parse correctly
`random name…
-
AS a developer
I WANT to import Google Sheet data into a JSON format
SO THAT the client can update the site content themselves
- [x] Research Google sheets API
- [x] Query from example dataset
- [x] …
-
Hi, I'm using react-papaparse@4.2.0 on next@13.4.19
```
readString(evt.target.result as string, {
worker: true,
header: true,
transformHeader: (header) => header.toLowerCase(),
…