in reply to hash table prob..

Hi,

I'm a frequent user of the debug .. :-)

Try the perl -d <your Perl script>, and then, go to the line you need to check, in this case

c 27
And now you can see and try all the possible combination, to see what o need. For example: to print all the %new

x %new
or just a small part of it
x $new->{resources.jdbc.JDBCProvider}->{cfi-oracle-jdbc}->{factories}- +>{CFIDS}
see more about the debug in perldebug

Replies are listed 'Best First'.
Re^2: hash table prob..
by harshhn (Initiate) on Jan 02, 2008 at 07:28 UTC
    hi.. thank you for your reply... i tried your code but still i'm not able to get the required result... i want the value that it holds.. your code gives the key and not its value...