「Ruby」openとeachでファイルを1行ずつ読み込むサンプル
構文
open(“ファイル名").each
openとeachを使用して、ファイルを1行ずつ読み込みます。
使用例
open("test.txt").each do |line| p line end
Coding Changes the World
構文
open(“ファイル名").each
openとeachを使用して、ファイルを1行ずつ読み込みます。
使用例
open("test.txt").each do |line| p line end