Is there a cell length limit writing CSV files with Text::CSV?

前端 未结 1 1664
北荒
北荒 2020-12-16 05:58

Linking to this question Writing CSV in perl

I am parsing a content from html file and writing it in csv by using Text::CSV; which was working well.

But while

相关标签:
1条回答
  • 2020-12-16 06:33

    The problem was with Excel. The actual CSV file is correct, but according to Microsoft's documentation, Excel cannot read more than 32767 characters in a single cell:

    Total number of characters that a cell can contain: 32,767 characters

    You could try other editors like:

    • Notepad++
    • UltraEdit
    • CSVed

    At least one of them should work for your needs.

    0 讨论(0)
提交回复
热议问题