CONFIDENTIALITY NOTICE: This e-mail and any attachment to it may contain
confidential and legally privileged information. This information is
intended only for the recipient named above. If you are not the intended
recipient, take notice that any disclosure, copying, distribution or
taking of any action based upon this information is prohibited by law.
If you have received this e-mail in error, please return it to the
sender and delete this copy from your system. Thank you.
irb(main):008:0> x = [‘chop!’, ‘chop!’, ‘chop!’]
=> [“chop!”, “chop!”, “chop!”]
irb(main):009:0> y = “This is a string!!!”
=> “This is a string!!!”
irb(main):010:0> x.each {|method| y.send(method)}
=> [“chop!”, “chop!”, “chop!”]
irb(main):011:0> y
=> “This is a string”
The send method allows you to do what you’re asking.
CONFIDENTIALITY NOTICE: This e-mail and any attachment to it may contain
confidential and legally privileged information. This information is
intended only for the recipient named above. If you are not the intended
recipient, take notice that any disclosure, copying, distribution or
taking of any action based upon this information is prohibited by law.
If you have received this e-mail in error, please return it to the
sender and delete this copy from your system. Thank you.