|
|
|
@ -814,7 +814,7 @@ public class FormulaPane extends BasicPane implements KeyListener, UIFormula {
|
|
|
|
|
}).setVisible(true); |
|
|
|
|
//过滤出数组参数,如:[1,2]
|
|
|
|
|
for (Map.Entry<String, Object> entry : parameterMap.entrySet()) { |
|
|
|
|
if (entry.getValue().toString().startsWith("[") && entry.getValue().toString().startsWith("]")) { |
|
|
|
|
if (entry.getValue().toString().startsWith("[") && entry.getValue().toString().endsWith("]")) { |
|
|
|
|
Expression parse = calculator.parse(entry.getValue()); |
|
|
|
|
ArrayExpression arrayExpression = (ArrayExpression) parse.getConditionalExpression(); |
|
|
|
|
FArray<Node> fArray = new FArray<>(arrayExpression.getArrays()); |
|
|
|
|