How do I make the following string cast:
"ln(5*x)" -> "Math.log(5*x)"
"math.log(#{"ln(5*x)"[/ln\((.*)\)/,1]})"
"ln(5*x)".sub('ln','Math.log') #=> "Math.log(5*x)"