Studio:Dealing with hex in Perl

From STRIDE Wiki
Revision as of 23:52, 20 August 2009 by Timd (talk | contribs) (Text replace - 'Category:Perl Info' to 'Category:Studio:Perl Info')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Hex numbers in ascript constant collection

AutoScript 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