Hi,
I have a problem with the Perl module Excel::Writer::XLSX and certain characters such as Ä and Ö in the finnish Alphabet. They seem to become gibberish in the resulting file. I'm running the Perl script in Centos 6.3 and I've viewed the Excel file both in Windows 7 with Office 2010 and in Centos using LibreOffice Calc. Same problem in both. Any ideas what I might be doing wrong?
I have included a short code example below which produces the same issue in my system.
#!/usr/bin/perl -w
use strict;
use Excel::Writer::XLSX;
my $path = '/tmp';
my $time = time();
my $stamp = $time . '-' . $$;
my $filename = "$path/$stamp.xlsx";
# Create a new Excel workbook
my $workbook = Excel::Writer::XLSX->new($filename);
# Add a worksheet
my $worksheet = $workbook->add_worksheet();
# set header format
my $format = $workbook->add_format( bold => 1, color => 'black');
$worksheet->write(0, 0, 'Name', $format);
$worksheet->write(1, 0, 'Mister Mister');
$worksheet->write(2, 0, 'Mäster Mäster');
$worksheet->autofilter(0, 0, 2, 0);
$worksheet->freeze_panes(1, 0);
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|