“Ruby Obtenha linha de um arquivo” Respostas de código

Ruby Obtenha linha de um arquivo

# open the file
File.open('foo.txt') do |file|
  # iterate over each line with its index
  file.each_line.with_index(1) do |line, number|
    puts "#{number}: #{line}"
  end
end
# since we passed a block, the file is automatically closed after `end`
Mateusz Drewniak

Ruby Obtenha linha de um arquivo

# open the file
File.open('foo.txt') do |file|
  # iterate over each line
  file.each_line do |line|
    puts line
  end
end
# since we passed a block, the file is automatically closed after `end`
Mateusz Drewniak

Ruby Obtenha linha de um arquivo

# open the file
file = File.open('foo.txt')

# iterate over each line
file.each_line do |line|
  puts line
end

# close the file afterwards
file.close
Mateusz Drewniak

ruby leia o arquivo linha por linha

File.readlines('foo').each do |line|
	puts line
end
Lioruby

Respostas semelhantes a “Ruby Obtenha linha de um arquivo”

Perguntas semelhantes a “Ruby Obtenha linha de um arquivo”

Mais respostas relacionadas para “Ruby Obtenha linha de um arquivo” em Ruby

Procure respostas de código populares por idioma

Procurar outros idiomas de código