作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要排序帮助
我不知道为什么当我有字符串“3*3”时,matcher.find()会跳转
代码:
public void delSin_Cos_Tan()
{
o = new ArrayList<>();
String aDate = "3*3";
Pattern datePattern = Pattern.compile("((sin|cos|tan|sinh|cosh|tanh|asin|acos|atan)\\((.+)\\))");
//Operat.Sin_Cos_Tan.Patter = ((sin|cos|tan|sinh|cosh|tanh|asin|acos|atan)\((.+)\))
Matcher matcher = datePattern.matcher(aDate);
Log.d(TAG,"Sin Startz");
Log.d(TAG,"Sin " + Aufgabe);
while (matcher.find());
{
Log.e(TAG,matcher.group(1)); // there is the Error, but withe the String "3*3" an i don't konw why it is jump inside the while
String Gesammt = matcher.group(1);
String TYP = matcher.group(2);
String Inklammer = matcher.group(3);
Log.d(TAG, String.valueOf("------------------------"));
Log.d(TAG, Gesammt);
Log.d(TAG, Inklammer);
Log.d(TAG, TYP);
Log.d(TAG, String.valueOf("------------------------"));
}
}
我的完整代码:http://pastebin.com/jWN1ghfz
最佳答案
在 while 循环之后有一个 ;
。这就是为什么你的完整 block 总是会被执行!
while (matcher.find());
应该是 while (matcher.find())
(没有 ;
)
因为
while (matcher.find());
{
//...
}
与
相同while (matcher.find()){
;
}
{
//...
}
关于java - While(matcher.find()) - 错误 - 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31579895/
我是一名优秀的程序员,十分优秀!