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
相关用法
- Ruby String hex用法及代码示例
- Ruby String eql?用法及代码示例
- Ruby String chr用法及代码示例
- Ruby String chars()用法及代码示例
- Ruby String casecmp?用法及代码示例
- Ruby String capitalize()用法及代码示例
- Ruby String capitalize!用法及代码示例
- Ruby String chomp用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String each_line Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。