當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。