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

Suppose we have a method that returns a random string :

def return_random
  "random generated string #{Time.now}"
end

How to create a new string that is an addition of n times of return_random.

Exemple :

new_string = return_random + return_random + ... + return_random [n times]

Edit: Using return_random * n won't work because it's copying the string n times and not generating new ones.

share|improve this question

1 Answer

up vote 10 down vote accepted

This will do it:

new_string = n.times.collect { return_random }.inject(:+)
share|improve this answer
7  
Or just "join". – Dave Newton Jan 4 '12 at 0:00

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.