index是Ruby中的String類方法,用於返回給定字符串中給定子字符串或模式(regexp)首次出現的索引。如果存在第二個參數,它將指定字符串中開始搜索的位置。如果找不到,它將返回nil。
用法: str.index()
參數:在這裏,str是給定的字符串。
返回值:給定子字符串或模式(regexp)在str中首次出現的索引。
示例1:
# Ruby program to demonstrate
# the index method
# Taking a string and
# using the method
puts "Sample".index('m')
puts "Program".index('gr')
puts "Checking".index('a')
輸出:
2 3
示例2:
# Ruby program to demonstrate
# the index method
# Taking a string and
# using the method
puts "Mangal".index(?g)
puts "Language".index(/[aeiou]/, -3)
輸出:
3 5
相關用法
- Scala String +用法及代碼示例
- Scala String ===用法及代碼示例
- Ruby String hex用法及代碼示例
- Ruby String chr用法及代碼示例
- Scala String ==用法及代碼示例
- Scala String =~用法及代碼示例
- Ruby String eql?用法及代碼示例
- Ruby String chomp用法及代碼示例
- Ruby String bytesize用法及代碼示例
- Ruby String chomp!用法及代碼示例
- Ruby String chop!用法及代碼示例
- Ruby String empty?用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | String index Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。