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
相关用法
- Ruby String chr用法及代码示例
- Ruby String eql?用法及代码示例
- Ruby String reverse用法及代码示例
- Ruby String length用法及代码示例
- Ruby String casecmp用法及代码示例
- Ruby String casecmp?用法及代码示例
- Ruby String chomp用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String hex Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。