david2008 has asked for the wisdom of the Perl Monks concerning the following question:
I have the following question.
I have an excel with very long urls.(length>255)
When i use the normal write function it does not work.
This is a known issue as explained in http://search.cpan.org/~jmcnamara/Excel-Writer-XLSX-0.69/lib/Excel/Writer/XLSX.pm#LIMITATIONS
So i have to resort to the write_string function.
The problem is that the url is html encoded. For example & is converted into &.
www.example.com?a=b&c=d is converted into www.example.com?a=b&c=d
When i read the url back from excel with another program i have to decode the url which is an ugly workaround.
Is there a better way to handle this problem?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Spreadsheet::WriteExcel write urls greater than 255 characters
by rpnoble419 (Pilgrim) on Jun 30, 2013 at 12:37 UTC | |
by david2008 (Scribe) on Jun 30, 2013 at 13:06 UTC | |
by NetWallah (Canon) on Jun 30, 2013 at 17:14 UTC |