parse string bug #875
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#875
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
If the cell contains this pattern:
1;2;3 or 1;2;5 or 12;14;14
the parse will think it's a date and try to give you a number in output
37623.041666666664.
this can be easy reproduced by:
create test.csv file like below.
`string value
12;12;12
12;13;12
12;12;13
1;0;999
1;2;3;4;5;6;7;444;8;9;10;11;12;13;14;15;999
`
and drop file over here: http://oss.sheetjs.com/
the output will be this:
`
string value
12/12/12
12/13/12
12/12/13
1;0;999
1;2;3;4;5;6;7;444;8;9;10;11;12;13;14;15;999
`