Evan Moseman wrote: > If I am perusing through the each_object loop and find the objects I'm > interested in, how can I get their variable names? > > Thanks! > > -- > Evan > You can't. Variables are just labels for objects. What if you have something like this: foo = MyClass.new bar = foo What's the variable name of the object? What about ary = [] ary << bar Now what's the variable name? What about this def f(v) puts v end f(ary[0]) Now what's the variable name? -- RMagick: http://rmagick.rubyforge.org/ RMagick 2: http://rmagick.rubyforge.org/rmagick2.html