ruby get line from a file
# 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`
ruby get line from a file
# 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`
ruby get line from a file
# 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`
ruby get line from a file
# 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
ruby read file line by line
File.readlines('foo').each do |line|
puts line
end
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us