Help for this page

Select Code to Download


  1. or download this
        my $start = index($@, 'HASH(0x') + 7;
        my $end   = index($@, ')', $start);
        my $hex   = substr($@, $start, $end-$start);
    
  2. or download this
        my($hex) = $@ =~ /HASH\(0x(\w+)\)/;