Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    $Data::Dumper::Useqq = 1;
    ...
        print Dumper $row;
      }
    }
    
  2. or download this
    $VAR1 = [
              "\n\t\tACME Communications, Inc.\n\t\t\n\t",
    ...
              "\n\n\t\n\t\t\240\n\t\t\n\t\t\n\t\n\n\t"
            ];
    ...
    
  3. or download this
    foreach (@$row) {
      tr{ \t\n\xA0}{ }s;
      s{^\s+}{};
      s{\s+$}{};
    }
    
  4. or download this
    #!/usr/bin/perl
    use warnings;
    ...
        print join(',', @$row), "\n";
      }
    }