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 the content size had over 130000+ characters, its getting overlapped or only partial content is written in the cell.
is that anything with the cell character limit range in a csv ?
Please give me some suggestion.
Update
i use this code to print the csv.
$csv->print($fh, [$name, $table]);
if the variable contains character '[',']' it get overlapped to next cells.
Update
From this link http://open.api.ebay.com/shopping?callname=GetSingleItem&responseencoding=XML&appid=&siteid=0&version=839&IncludeSelector=Details,Description,ItemSpecifics&ItemID=251307275303
I am trying to write the content inside the <\Description> Tag which have a large content.