前端之家收集整理的这篇文章主要介绍了
ruby – 如何从文件中获取特定的行,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以从知道其行号的
文件中
提取特定行?例如,只需从
文件“text.txt”中
获取N行的
内容作为字符串即可.
尝试这两个
解决方案之一:
file = File.open "file.txt"
#1 solution would eat a lot of RAM
p [*file][n-1]
#2 solution would not
n.times{ file.gets }
p $_
file.close
原文链接:https://www.f2er.com/ruby/271972.html