我有以下公式:
Revenue - Costs * (1 + Profitpercentage)
我想解析它并只保留重要的字符串,这需要消除:空格,[ - + * / =]和括号。
我想出了以下代码:
p "Revenue - Costs * (1 + Profitpercentage)".split (/(\s|\.|\+|\-|\/|\*|\\)/)
但这只是:
["Revenue", " ", "", "-", "", " ", "Costs", " ", "", "*", "", " ", "(1", " ", "", "+", "", " ", "Profitpercentage)"]
如何清理我的代码?