I have some data scrubbing to do, and to divide and conquer the problem, I decided to fix the easy things first, so that I can work in peace on the trickier stuff.

In essence, I have a hash of hashes that represent the count of attributes seen for a collection of things. Sometimes I see the same attribute more than once, sometimes I see many attributes once, and any combination in between.

Most of the things, though, have one attribute, seen once. I therefore wanted to go throught the hash and put them to one side, and put what remains on the other. The trouble is, that solitary attribute has an abitrary name, so I can't just see if it exists. After futzing around a while and getting nowhere fast and more and more complicated, the following suddenly popped out at me.

Note that the $h{key}{subkey} stuff below is actually coming from something like:

while( <> ) { chomp; my( $key, $subkey ) = split; $h{$key}{$subkey}++; }

(It's the $h{$c}{(keys %{$h{$c}})[0]} == 1 bit that pleases me).

#! /usr/bin/perl -w use strict; my %h; # two different subkeys $h{foo}{bar}++; $h{foo}{rat}++; # one subkey $h{fob}{rat}++; # one subkey seen more than once $h{fod}{car}++; $h{fod}{car}++; for my $c( keys %h ) { if( scalar keys %{$h{$c}} == 1 and $h{$c}{(keys %{$h{$c}})[0]} == +1 ) { print "$c has a ${\(keys %{$h{$c}})[0]}\n"; } else { print "$c is complicated\n"; } }

In reply to Seeing if a hash has one arbitrary key by grinder

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.