Ruby 字符串 getbyte方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程