it's possible in rails convert variable name to string?
Example:
stack_overflow = "Fantastic!".
by stack_overflow.to_sym
I'll get :Fantastic!
.
Instead I would => :stack_overflow
and, if it were possibile, this would be bad programming cause unsafe code?
Thanks :-)