Help for this page

Select Code to Download


  1. or download this
    if ($table->cell($rownum, 0..2) =~ /\xa0/) {
    
  2. or download this
    my $cellStr = $table->cell($rownum, 0..2);
    
    ...
    } else {
        $cellStr =~ s/\xa0//;
    }
    
  3. or download this
    $_ = $table->cell($rownum, 0..2);
    
    ...
    } else {
        s/\xa0//;
    }