「Ruby」openでテキストファイルを読み取るサンプル

2021年8月29日

書式
open(ファイル名)
使用例

f = open("test007.txt")
 
while strLine = f.gets
  p strLine
end
 
f.close

 

Ruby

Posted by arkgame