Studio:Dealing with hex in Perl: Difference between revisions
Jump to navigation
Jump to search
(added hex in perl) |
|||
Line 9: | Line 9: | ||
</source> | </source> | ||
For more information, see [ | For more information, see [http://perldoc.perl.org/functions/hex.html perldoc] | ||
[[Category:Perl Info]] | [[Category:Perl Info]] |
Revision as of 18:25, 14 May 2008
Hex numbers in ascript constant collection
Ascript always returns constants as strings, and Perl does not convert hex strings to numeric. You can explicitly use Perl function hex to enclose the constant returned by ascript constant collection. See example below:
#define MY_HEX_CONST 0xFFFFFFFF
my $value = hex($main::ascript->Constants->Item("MY_HEX_CONST")->Value);
For more information, see perldoc