Ruby 字符串 hex方法

Ruby 字符串 hex方法

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

语法: 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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程