Hi All, I have a string variable that contains other ruby variables. I intend to render the string variable and replace the other ruby variables in it with their values.Is it possible?
To clarify my question, here is the same :-
@ruby_variable = "Some value in the variable"
@variable_to_be_rendered = "Some text @ruby_variable"
After rendering(if thats possible, or some other function), I would get the value
"Some text Some value in the variable"
Regards, Mohit