each_line是Ruby中的String類方法,用於通過將提供的參數作為記錄分隔符(默認為$/)來拆分給定的字符串,並將每個子字符串依次傳遞到提供的塊。如果提供了零長度的記錄分隔符,則該字符串將分成多個連續的換行符分隔的段落,
用法: str.each_line(separator=$/ [, getline_args])
參數:在這裏,str是給定的字符串。
返回:如果沒有塊,則為枚舉數。否則為分割字符串。
範例1:
# Ruby program to demonstrate
# the each_line method
# Taking a string and
# using the method
puts "Ruby\nString".each_line {|s| p s}
輸出:
"Ruby\n" "String" Ruby String
範例2:
# Ruby program to demonstrate
# the each_line method
# Taking a string and
# using the method
puts "Sample\nInput".each_line {|s| p s}
輸出:
"Sample\n" "Input" Sample Input
相關用法
- Scala String =~用法及代碼示例
- Ruby String hex用法及代碼示例
- Scala String +用法及代碼示例
- Ruby String eql?用法及代碼示例
- Ruby String chr用法及代碼示例
- Scala String ==用法及代碼示例
- Scala String ===用法及代碼示例
- Ruby String chars()用法及代碼示例
- Ruby String casecmp?用法及代碼示例
- Ruby String capitalize()用法及代碼示例
- Ruby String capitalize!用法及代碼示例
- Ruby String chomp用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | String each_line Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。