You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When counting delimiters of a CSV that has text with line breaks inside an enclosure it should not count the lines inside the enclosure as separate lines when calculating its deviation.
What is the current behavior?
If you have a file like Delimiter Test.txt which has line breaks in it. It incorrectly determines the delimiter as " " and not ",".
What are the steps to reproduce?
Parse this CSV
Name,Copy,URL
Test,"This is a test
this is a test
with line breaks
that breaks the
delimiters",https://google.com
Test,"This is a test
this is a test
with line breaks
that breaks the
delimiters",https://google.com
Test,"This is a test
this is a test
with line breaks
that breaks the
delimiters",https://google.com
Test,"This is a test
this is a test
with line breaks
that breaks the
delimiters",https://google.com
Then it determines the delimiter as a space and not a comma.
Which versions of PhpSpreadsheet and PHP are affected?
PhpSpreadsheet - 1.4.1
PHP - 7.2
The text was updated successfully, but these errors were encountered:
This is:
What is the expected behavior?
When counting delimiters of a CSV that has text with line breaks inside an enclosure it should not count the lines inside the enclosure as separate lines when calculating its deviation.
What is the current behavior?
If you have a file like Delimiter Test.txt which has line breaks in it. It incorrectly determines the delimiter as
" "
and not","
.What are the steps to reproduce?
Parse this CSV
Then it determines the delimiter as a space and not a comma.
Which versions of PhpSpreadsheet and PHP are affected?
PhpSpreadsheet - 1.4.1
PHP - 7.2
The text was updated successfully, but these errors were encountered: