- or download this
#!/usr/bin/perl -w
# File displayPipeTracer2.pl
...
my $maskResult = hex($testString) & 0x400000000000000000000000;
print "Mask Result: $maskResult\n";
- or download this
Integer overflow in hexadecimal number at script.pl line 7.
Hexadecimal number > 0xffffffff non-portable at script.pl line 7.
Integer overflow in hexadecimal number at script.pl line 7.
Hexadecimal number > 0xffffffff non-portable at script.pl line 7.
Mask Result: 4294967295
- or download this
#!/usr/bin/perl -w
# File displayPipeTracer2.pl
...
my $maskResult = $testString & 0x400000000000000000000000;
print "Mask Result: $maskResult\n";