当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby String hex用法及代码示例


hex是Ruby中的String类方法,用于将给定字符串中的前导字符视为十六进制数字字符串(带有可选符号和可选0x),并返回相应的数字。错误返回零。

用法: str.hex

参数:在这里,str是给定的字符串。


返回值:对应的数字。

示例1:

# Ruby program to demonstrate  
# the hex method  
       
# Taking a string and  
# using the method 
puts "123678".hex                 
puts "Ruby".hex

输出:

1193592
0

示例2:

# Ruby program to demonstrate  
# the hex method  
       
# Taking a string and  
# using the method 
puts "-87673".hex                 
puts "0x876adc".hex

输出:

-554611
8874716


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String hex Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。