Ruby 字符串 getbyte方法
getbyte 是Ruby中的一个字符串类方法,用于将indexth字节作为一个整数返回。
语法: str.getbyte(index)
参数: 这里,str是给定的字符串。
返回: indexth字节的整数。
例子 1 :
# Ruby program to demonstrate
# the getbyte method
# Taking a string and
# using the method
puts "Ruby".getbyte(1)
puts "String".getbyte(4)
输出
117
110
例2 :
# Ruby program to demonstrate
# the getbyte method
# Taking a string and
# using the method
# it will return nil
puts "Sample".getbyte(7)
puts "Program".getbyte(4)
输出
114