an elegant way to modify all lines from file by using map() function?

R

RobertGawron

Hi all,

I'm new in ruby and I just have a question: in python when I want to
read all lines from file, do something with all of them and then use
them in my program I use map function + lambda function, sth like
that:

print map(lambda u: u.upper(), open("foo", "r").readlines())

but in your language I didn't find the way to create in one step array
of all lines from file, that could be used by map(). If I really want
to use map in this situation I have to use secondary array (called
arr) like in this snippet?

arr = Array.new
File.open('foo').each_line{ |l| arr.push l }
p arr.collect{ |l| l.upcase }

Please post a code-snippet, it's quite interesting to me :)
 
C

Charles Oliver Nutter

but in your language I didn't find the way to create in one step array
of all lines from file, that could be used by map(). If I really want
to use map in this situation I have to use secondary array (called
arr) like in this snippet?

arr = Array.new
File.open('foo').each_line{ |l| arr.push l }
p arr.collect{ |l| l.upcase }

On 1.8.7+, you can use .lines to get an Enumerator:

p File.open('foo').lines.map {|l| l.upcase}

- Charlie
 
B

Benoit Daloze

[Note: parts of this message were removed to make it a legal post.]

Hi,

2010/1/21 RobertGawron said:
Hi all,

I'm new in ruby and I just have a question: in python when I want to
read all lines from file, do something with all of them and then use
them in my program I use map function + lambda function, sth like
that:

print map(lambda u: u.upper(), open("foo", "r").readlines())

but in your language I didn't find the way to create in one step array
of all lines from file, that could be used by map(). If I really want
to use map in this situation I have to use secondary array (called
arr) like in this snippet?

arr = Array.new
File.open('foo').each_line{ |l| arr.push l }
p arr.collect{ |l| l.upcase }

Please post a code-snippet, it's quite interesting to me :)
Waow awesome how the order is in Python...

Let's take the natural order, welcome to Ruby !

puts File.read('foo').lines.map { |line| line.upcase }
That's in ruby 1.9
Notice lines is an Enumerator, that can be converted to an Array if needed
by #to_a

You got also IO.readlines
 
R

Rob Biedenharn

Hi,


Waow awesome how the order is in Python...

Let's take the natural order, welcome to Ruby !

puts File.read('foo').lines.map { |line| line.upcase }
That's in ruby 1.9
Notice lines is an Enumerator, that can be converted to an Array if
needed
by #to_a

You got also IO.readlines


Don't stop there! Take advantage of the Symbol#to_proc behavior:

puts File.read('foo').lines.map(&:upcase)

;-)

-Rob

Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)
 
R

Robert Klemme

2010/1/21 Charles Oliver Nutter said:
On 1.8.7+, you can use .lines to get an Enumerator:

p File.open('foo').lines.map {|l| l.upcase}

This does not close the file handle properly.

I'd rather do something like this:

File.foreach('foo').map {|l| l.upcase}

File.foreach('foo').map(&:upcase)

These have the advantage over some of the presented solutions that
they do not create two large Arrays in memory but just one - the
mapped version.

Kind regards

robert
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top