vote up 3 vote down star

Evidently hash keys are compared in a case-sensitive manner.

$ perl -e '%hash = ( FOO => 1 ); printf "%s\n", ( exists $hash{foo} ) ? "Yes" : "No";'
No

$ perl -e '%hash = ( FOO => 1 ); printf "%s\n", ( exists $hash{FOO} ) ? "Yes" : "No";'
Yes

Is there a setting to change that for the current script?

Thanks.

flag

75% accept rate

2 Answers

vote up 7 vote down check

You will have to use a tied hash. For example Hash::Case::Preserve.

link|flag
I wonder what the speed and space penalties there are for this implementation versus just making sure people get their hash keys in the right case in the first place? – Paul Tomblin Nov 21 '08 at 20:50
I shouldn't cost much in space, though it will definitely cost in time. Having said that, in most cases it won't matter much IMHO. – Leon Timmermans Nov 21 '08 at 21:23
vote up 5 vote down

The hash of a string and the same string with the case changed are not equal. So you can't do what you want, short of calling "uc" on every hash key before you create it AND before you use it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.