Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Zdog
  • Order by date
  1. Zdog

    Making a Hash of it

    mikevh, You're the best. Works like a champ. Don't suppose, purely for my edification, that you could explain the for loops that are printing the hash? for my $k (sort keys %h) { print "$k\t"; for my $j (sort keys %{$h{$k}}) { print "$h{$k}{$j}\t&quot...
  2. Zdog

    Making a Hash of it

    I'm trying to take an error file and summarize the results. Counting the number of errors per cell by error type. Example input format: SELECT Error1 COMMENT = "blah blah blah"} (4;76) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Structure ( lower left x...
  3. Zdog

    Newbie Help re: Formatted Output

    That's my question. I assumed I should be using a filehandle with write, but either I have the syntax wrong or using a filehandle is the wrong solution. format Stuff = @<<<<<@<<<<<@ $stuff1, $stuff2, $stuff3 . $_ = &quot;Stuff&quot;; write; #Where does the...
  4. Zdog

    Newbie Help re: Formatted Output

    So far can't figure out how to output a formatted line of data out to a file using the write command. Should I be using printf instead or will write work? Thanks

Part and Inventory Search

Back
Top