红宝石 |字符串十六进制方法
hex是 Ruby 中的 String 类方法,用于将给定字符串中的前导字符视为十六进制数字字符串(带有可选的符号和可选的 0x)并返回相应的数字。出错时返回零。
Syntax: str.hex
Parameters: Here, str is the given string.
Returns: A corresponding number.
示例 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