Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok this is not a biggier but in the interest of writing cleaner code?

IO.popen("Generate a list of files").readlines.each{|f_nl|
   f=f_nl.chomp
   # ...

} Namely is there someway to chomp the whole array in one fell swoop?

share|improve this question

2 Answers

up vote 9 down vote accepted
IO.popen("Generate a list of files").readlines.map(&:chomp)
share|improve this answer
IO.read("something").split($/)

$/ is the separator string. IO.read closes the file after reading.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.