Help for this page

Select Code to Download


  1. or download this
    if ($lineData[18] eq $date) {
    
  2. or download this
    warn "comparing $lineData[18] to $date\n";
    
    if ($lineData[18] eq $date) {
    
  3. or download this
    no warnings;
    print '12/Mar/2004' eq '12/Mar/2004' ? 1 : 0;   should be 1
    ...
    1
    0
    1