Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^3: comparing two excel files

by sir_com (Acolyte)
on Aug 24, 2009 at 16:44 UTC ( [id://790862]=note: print w/replies, xml ) Need Help??


in reply to Re^2: comparing two excel files
in thread comparing two excel files

Below is the code I am using
for my $row ( $row_min .. $row_max ) { for my $col ( $col_min .. $col_max ) { my $cell = $sheettwo->get_cell( $row, $col ); my $cell1 = $sheetone->get_cell( $row, $col ); next unless $cell and $cell1; my $data = $cell->value(); my $search = $cell1->value(); if ( $data !~ m/$search/ ) { print FILE "Row, Col = ($row, $col)\n";
I get few results and then script fails with error as below Unmatched ( in regex; marked by <-- HERE in m/TECHNOLOGY Team ( <-- HERE SPORTS Team/ at excelcomp.pl Also, if I use if ( $data !~ m/\Q$search\E/ ) I dont get any error but I dont get any result too. Please help.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://790862]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (5)
As of 2024-03-19 05:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found