Convert a string with mathematical expressions into a float

前端 未结 4 970
隐瞒了意图╮
隐瞒了意图╮ 2021-01-16 17:39

A text field contains mathematical expressions like: 12+45-6 Is possible to convert this string to a number?

Can we use the predicate facility?

4条回答
  •  不要未来只要你来
    2021-01-16 17:55

    One solution that doesn't rely on external libraries is to first convert the string into a sequence of tokens, then evaluate the expression using the shunting-yard algorithm chained onto a simple stack machine.

提交回复
热议问题