当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby String byteslice用法及代码示例


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

用法: str.byteslice

参数:在这里,str是指定的字符串。


返回值:

  • 如果仅传递单个整数,则在该位置为一个字节的子字符串。
  • 一个子字符串从第一个给定的偏移量开始,如果两个整数都通过,则由第二个给定长度。
  • 如果通过范围,则包含一个子字符串,该字符串包含由范围给定的偏移量的字节。
  • 如果长度为负或初始偏移量超出字符串或范围的开头大于结尾,则为nil。

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

示例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


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String byteslice Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。