数字格式异常和正则表达式查询

时间:2015-05-04 13:12:52

标签: java regex arraylist javafx linked-list

我正在尝试从用户那里获取数学表达式,但我在这里得到了数字格式异常:

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$2(Main.java:134)
    at Main$$Lambda$73/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.");
            });

2 个答案:

答案 0 :(得分:1)

NumberFormat Exception是因为你的正则表达式没有将数字与符号/文字分开。

tfExpress.getText().split("[^0-9]+-/*()"); 

返回整个文本,即(13-1)*(12-10)

你需要一个更复杂的正则表达式,它将符号与数字分开。感谢@unihedron表达正则表达式。

\b|(?<=[()])(?=[^\d()])|(?<=[^\d()])(?=[()])

现在你可以使用

...
String regex = "\b|(?<=[()])(?=[^\d()])|(?<=[^\d()])(?=[()])";
tfExpress.getText().split(regex);
... 

一个非常简单的工作示例可以是found here

答案 1 :(得分:0)

我希望您不要期望用正则表达式来评估该公式。那不行。

对于拆分,如果你不知道正则表达式,请使用其他类似StringTokenizer的东西。

StringTokenizer t = new StringTokenizer( "(13-1)*(12-10)", "+-/*()", true);
while( t.hasMoreTokens()) {
  System.out.println(t.nextToken());
}

结果

(
13
-
1
)
*
(
12
-
10
)