in reply to Re^16: why are hex values not numbers? (octal)
in thread why are hex values not numbers?
I had this thought before :)
now perl gives warning
Argument "0x41" isn't numeric in printf
Very clean, things we know are numbers and can unambiguously identify as numbers, we treat as numbers, all other stuff we warn about
But if definition of numeric was expanded to include more ambiguous num formats, then perl would need a new warning
treating "0x41" as numeric , might be wrong thing to do, silence with +"no warnings q/extranumeric/;"
I'm confused why perl-diddler hasn't posted use extranumeric; yet :D
In Section
Seekers of Perl Wisdom