in reply to Re: One bird, two Unicode names
in thread One bird, two Unicode names
How would I apply your Decode the file in this instance?my $zip = Archive::Zip->new( $infile ); my $content = $zip->contents('content.xml'); my $workbook_ref = read_xml_string($content); foreach my $sheet ( sort keys %$workbook_ref ) { foreach my $row( @{$$workbook_ref{$sheet}} ) { foreach my $cell_contents (@{$row}){ next unless defined( $cell_contents ); $cell_contents = replace_higher_unicode_code_points($cell_conten +ts); etc
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: One bird, two Unicode names
by ikegami (Patriarch) on Mar 11, 2011 at 08:38 UTC | |
by Anonymous Monk on Mar 11, 2011 at 10:11 UTC | |
by ikegami (Patriarch) on Mar 11, 2011 at 20:10 UTC | |
by RCH (Sexton) on Mar 14, 2011 at 16:02 UTC |