Perl中的hex函数将给定的十六进制数(以16为底)转换为其等效的十进制数(以10为底)。
用法: hex number
参数:
number:要转换的十六进制数
返回值:给定十六进制数的等效十进制数。
示例1:
#!/usr/bin/perl
# Initialising some hexadecimal values for
# the parameter of the hex function
$A = "A";
$B = "B";
$C = "1A";
$D = "2C";
# Calling the hex function
$E = hex $A;
$F = hex $B;
$G = hex $C;
$H = hex $D;
# Getting the equivalent decimal number
# of the given hexadecimal number
print "$E\n";
print "$F\n";
print "$G\n";
print "$H\n";
输出:
10 11 26 44
示例2:
#!/usr/bin/perl
# Initialising some hexadecimal values and
# Calling the hex function
$A = hex D;
$B = hex af;
$C = hex AF;
$D = hex BF;
# Getting the equivalent decimal number
# of the given hexadecimal number
print "$A\n";
print "$B\n";
print "$C\n";
print "$D\n";
输出:
13 175 175 191
相关用法
- Perl uc()用法及代码示例
- Perl each()用法及代码示例
- Perl sin()用法及代码示例
- Perl oct()用法及代码示例
- Perl ord()用法及代码示例
- Perl log()用法及代码示例
- Perl int()用法及代码示例
- Perl abs()用法及代码示例
- Perl exp用法及代码示例
- Perl cos()用法及代码示例
- Perl tell()用法及代码示例
- Perl chr()用法及代码示例
- Perl rindex()用法及代码示例
- Perl join()用法及代码示例
- Perl keys()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Perl | hex Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。