我正在寻找一个函数,按照这些例子返回一个数学函数:
The_Function_I_Need("x^2") = function(x) { return math.pow(x, 2) }
The_Function_I_Need("x*2+5") = function(x) { return 2*x+5 }
The_Function_I_Need("x+y") = function(x, y) { return x+y }
还有更多..
答案 0 :(得分:1)
int

答案 1 :(得分:-1)
Javascript eval()
函数可以将字符串计算为表达式。
要按照您的示例,您可以使用eval("x^2")
。