in reply to Re: non-ASCII characters in text->Excel
in thread non-ASCII characters in text->Excel
use Spreadsheet::ParseXLSX; my $infile='Characters.xlsx'; my @funny_characters=(); my $parser = Spreadsheet::ParseXLSX->new( ); my $workbook = $parser->parse($infile); for my $worksheet ( $workbook->worksheets() ) { my ( $row_min, $row_max ) = $worksheet->row_range(); my $row=0; while($row<=$row_max){ my $W=$worksheet->get_cell( $row,0);#assuming all funny characters on +the first column my $val=''; if( $W){$val=$W->value(); } push @funny_characters,$val; $row++; } } #so at the end, @funny_characters[0] will have the first funny charac +ter, funny_characters[1] the second in your Characters.xlsx file and +so on <\code> If you want to do something with those funny characters, you say <code> if($mytext=~/$funny_characters[0]/){.....}
|
---|