「Ruby」File.foreachを使用してファイルを1行ずつ読み込むサンプル
構文
File.foreach(“テキストファイル")
File.foreachを利用して、ファイルを1行ずつ読み込みます。
使用例
File.foreach("test.txt") do |line| p line end
Coding Changes the World
構文
File.foreach(“テキストファイル")
File.foreachを利用して、ファイルを1行ずつ読み込みます。
使用例
File.foreach("test.txt") do |line| p line end