“Ruby obtenga la línea de un archivo” Código de respuesta

Ruby obtenga la línea de un archivo

# 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 obtenga la línea de un archivo

# 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 obtenga la línea de un archivo

# 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 Leer Archivo Línea por línea

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

Respuestas similares a “Ruby obtenga la línea de un archivo”

Preguntas similares a “Ruby obtenga la línea de un archivo”

Más respuestas relacionadas con “Ruby obtenga la línea de un archivo” en Ruby

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código