数字格式异常与正则查询
Number Format Exception and Regex Inquiry
我正在尝试从用户那里获取数学表达式,但我一直在此处收到数字格式异常:
Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: For input string: "(13-1)*(12-10)"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:569)
at java.lang.Integer.valueOf(Integer.java:766)
at Main.lambda$start(Main.java:134)
at Main$$Lambda/16094097.handle(Unknown Source)
这是我用来评估输入的表达式的事件处理程序。文本字段应该接受 4 个数字 (1-13) 的表达式并评估它是否等于 24。我使用的是正则表达式,但它似乎不起作用。另外,我有一个字符数组,我最初只用它来表示符号,但这似乎不是必需的。我是正则表达式的新手,已经尝试了多种组合。
btVerify.setOnAction(
(ActionEvent e) ->
{
LinkedList<Character> expInput = new LinkedList<Character>();
for(char c: tfExpress.getText().toCharArray()){
expInput.add(c);
}
String[] inputIntegers = tfExpress.getText().split("[^0-9]+-/*()");
expInput.removeIf(p-> p.equals(signs));
ArrayList<Integer> temp = new ArrayList<>();
for(String s:inputIntegers)
{
temp.add(new Integer(Integer.valueOf(s)));
}
temp.remove(new Integer(card1.CardValue()));
temp.remove(new Integer(card2.CardValue()));
temp.remove(new Integer(card3.CardValue()));
temp.remove(new Integer(card4.CardValue()));
if(temp.isEmpty()&& expInput.isEmpty())
{
if(express == 24){
display.setText("Correct");
}
else
display.setText("Incorrect");
}
else
display.setText("The numbers in the expression don't "
+ "match the numbers in the set.");
});
希望您不要期望使用正则表达式计算该公式。那不行。
对于拆分,如果您不知道正则表达式,请使用其他类似 StringTokenizer 的工具。
StringTokenizer t = new StringTokenizer( "(13-1)*(12-10)", "+-/*()", true);
while( t.hasMoreTokens()) {
System.out.println(t.nextToken());
}
结果
(
13
-
1
)
*
(
12
-
10
)
NumberFormat Exception
是因为您的正则表达式没有将数字与 signs/literals 分开。
tfExpress.getText().split("[^0-9]+-/*()");
returns 全文即 (13-1)*(12-10)
您需要一个更复杂的正则表达式,它将符号与数字分开。感谢 @unihedron 的正则表达式。
\b|(?<=[()])(?=[^\d()])|(?<=[^\d()])(?=[()])
现在您可以使用
...
String regex = "\b|(?<=[()])(?=[^\d()])|(?<=[^\d()])(?=[()])";
tfExpress.getText().split(regex);
...
一个非常简单的工作示例可以是 found here。
我正在尝试从用户那里获取数学表达式,但我一直在此处收到数字格式异常:
Exception in thread "JavaFX Application Thread" java.lang.NumberFormatException: For input string: "(13-1)*(12-10)"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:569)
at java.lang.Integer.valueOf(Integer.java:766)
at Main.lambda$start(Main.java:134)
at Main$$Lambda/16094097.handle(Unknown Source)
这是我用来评估输入的表达式的事件处理程序。文本字段应该接受 4 个数字 (1-13) 的表达式并评估它是否等于 24。我使用的是正则表达式,但它似乎不起作用。另外,我有一个字符数组,我最初只用它来表示符号,但这似乎不是必需的。我是正则表达式的新手,已经尝试了多种组合。
btVerify.setOnAction(
(ActionEvent e) ->
{
LinkedList<Character> expInput = new LinkedList<Character>();
for(char c: tfExpress.getText().toCharArray()){
expInput.add(c);
}
String[] inputIntegers = tfExpress.getText().split("[^0-9]+-/*()");
expInput.removeIf(p-> p.equals(signs));
ArrayList<Integer> temp = new ArrayList<>();
for(String s:inputIntegers)
{
temp.add(new Integer(Integer.valueOf(s)));
}
temp.remove(new Integer(card1.CardValue()));
temp.remove(new Integer(card2.CardValue()));
temp.remove(new Integer(card3.CardValue()));
temp.remove(new Integer(card4.CardValue()));
if(temp.isEmpty()&& expInput.isEmpty())
{
if(express == 24){
display.setText("Correct");
}
else
display.setText("Incorrect");
}
else
display.setText("The numbers in the expression don't "
+ "match the numbers in the set.");
});
希望您不要期望使用正则表达式计算该公式。那不行。
对于拆分,如果您不知道正则表达式,请使用其他类似 StringTokenizer 的工具。
StringTokenizer t = new StringTokenizer( "(13-1)*(12-10)", "+-/*()", true);
while( t.hasMoreTokens()) {
System.out.println(t.nextToken());
}
结果
(
13
-
1
)
*
(
12
-
10
)
NumberFormat Exception
是因为您的正则表达式没有将数字与 signs/literals 分开。
tfExpress.getText().split("[^0-9]+-/*()");
returns 全文即 (13-1)*(12-10)
您需要一个更复杂的正则表达式,它将符号与数字分开。感谢 @unihedron 的正则表达式。
\b|(?<=[()])(?=[^\d()])|(?<=[^\d()])(?=[()])
现在您可以使用
...
String regex = "\b|(?<=[()])(?=[^\d()])|(?<=[^\d()])(?=[()])";
tfExpress.getText().split(regex);
...
一个非常简单的工作示例可以是 found here。