【发布时间】:2011-03-01 18:33:08
【问题描述】:
我想像
一样将数组引用写入 Excel@eec = (
['maggie', 'milly', 'molly', 'may' ],
[13, 14, 15, 16 ],
['shell', 'star', 'crab', 'stone']
);
$worksheet->write_col('A1', \@eec);
但我的问题是我还想嵌入超链接。
我知道如何将超链接添加到特定标签,例如,
$worksheet->write('A4', 'http://www.perl.com/', 'Perl', $format);
但是我应该怎么做才能显示超链接让我们说
标签'may'?
更多详情请参阅Example of how to use the Spreadsheet::WriteExcel module to write 1D and 2D arrays of data。
【问题讨论】:
标签: perl excel spreadsheet