Aug 10, 2021 12:17 AM
Input.fileAsync force change ID to Date.
//read csv
let latestStock = await input.fileAsync('Please CSV',
{
allowedFileTypes: ['.csv'],
}
);
console.log(latestStock);
↑It’s true ID"0002-3". But Date format.
If Do you know resolve. Please teach me.
Solved! Go to Solution.
Aug 24, 2021 05:18 PM
Thank you so much :star_struck:
I got original ID in your way.
but My ID has additional " in each value.
How can I remove additional " ?
I think conect replace. but I couldn’t by my skill :sweat_drops:
This is csv text date.
And I have another problem.
Columun B Value has many comma, so line array length are unequal by use of line.split(",").
Aug 24, 2021 05:43 PM
Open your csv file in a plain text editor and you will probably see that these extra quotes appear in the original file. CSV files often have text strings in double quotes in order to be able to include literal commas, quote marks, and other special characters in a single field.
Getting rid of the extra quotes is a matter of string manipulation. Keep in mind that some of the quotes you see are in the actual string, and other quotes are put there by Airtable to show that it is displaying a text string (versus a number or other data type).