Let's say I have an XML::Element...I want to do something like:
my_xml_element.send("parent.next_sibling.next_sibling")
|
Let's say I have an XML::Element...I want to do something like: my_xml_element.send("parent.next_sibling.next_sibling") |
|||
|
|
|
In your case it's better to use
And for your code:
|
||||
|
|
|
uh, that's not really what he was asking for if I'm understanding his question correctly. I mean send takes a string or a symbol as an arg, and your solution doesn't. I don't think there's a built in method that will do what you want, but I whipped up a method that will, with a test.
|
|||
|
|
|
Actually, Khelll was almost right. Use this:
This code is up to 20 times faster than using split() and allows you to pass chain methods with args, like this:
|
|||
|
|
|
The problem with Alfuken's answer based on eval is A) eval is pretty unsafe although fast B) if you have an extra (consecutive) dot for method invocation like this
|
|||
|
|
|
I think the question is that you specifically have a series of methods defined as a string, and you want to invoke that on some object, right?
|
|||||
|