エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Ruby: What's an elegant way to pick a random line from a text file?
I've seen some really beautiful examples of Ruby and I'm trying to shift my thinking to be able t... I've seen some really beautiful examples of Ruby and I'm trying to shift my thinking to be able to produce them instead of just admire them. Here's the best I could come up with for picking a random line out of a file: def pick_random_line random_line = nil File.open("data.txt") do |file| file_lines = file.readlines() random_line = file_lines[Random.rand(0...file_lines.size())] end random_line end



2013/03/01 リンク