Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a string that can be '+', '-', '*' or '/', and two numbers. I need to apply the operation denoted by the string to the numbers. I tried:

op = '+'
(&op.to_sym).call 1, 2

but it won't parse it. please help.

share|improve this question
what u doing with an & ?? that is for blocks! the answer below works fine – Rodrigo Dias Jan 18 at 19:35

1 Answer

up vote 3 down vote accepted

Ruby is not a Polish notation language.

1.send(op, 2)
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.