Hi All,
I have a string (which contains variable) in a variable
variable_name = "sample variable"
initial_string = "#{variable_name} and the text goes on" (The string
is being retrieved from Database (as string), so automatic variable
resolving will not happen)
I need to have
some_function(initial_string) -----> "sample variable and the text
goes on"
Hi All,
I have a string (which contains variable) in a variable
variable_name = "sample variable"
initial_string = "#{variable_name} and the text goes on" (The string
is being retrieved from Database (as string), so automatic variable
resolving will not happen)
I need to have
some_function(initial_string) -----> "sample variable and the text
goes on"