in reply to Re: convert hex string to hex numberin thread convert hex string to hex number
Or since you know your string starts with 0x, you can eval it.
my $hex = '0x3cb37140'; my $num = eval $hex; # 1018392896 [download]