in reply to Re: Can a hash key have a scalar value and also contain a hash?
in thread Can a hash key have a scalar value and also contain a hash?
my $registry = loadreg('file.reg'); print $registry->{'SessionServer/NamespaceProviders'}; # would print 3 +2225 print $registry->{'SessionServer/NamespaceProviders'}{'ODBC'}; # would + print ssprovider_db print $registry->{'SessionServer/NamespaceProviders'}{'ODBC'}{'TYPE'}; + # would print REG_SZ
|
|---|