📜  红宝石 |字符串字节片方法

📅  最后修改于: 2022-05-13 01:54:55.018000             🧑  作者: Mango

红宝石 |字符串字节片方法

byteslice是 Ruby 中的 String 类方法,用于字节引用。

注意:如果偏移量为负数,则从字符串的末尾开始计算。

示例 1:

# Ruby program to demonstrate
# the byteslice method
     
# Taking a string and
# using the method
puts "Ruby String".byteslice(9)
puts "Methods".byteslice(2, 4)

输出:

n
thod

示例 2:

# Ruby program to demonstrate
# the byteslice method
     
# Taking a string and
# using the method
puts "Ruby String".byteslice(-1)
puts "Methods".byteslice(1..4)

输出:

g
etho