in reply to Re: Strange Hash Problem
in thread Strange Hash Problem

Does Perl just look at the first n characters in a hash?

No.

Does it see it starts with numbers and then only takes the numbers up until a non-numeric value?

No.

Does anyone have an idea to what is happening?

Yes. You treat the string "text" as a hash reference. Using use strict; use warnings; would have caught this.