我正在尝试编写一个在字符串开头查找时间的正则表达式。我想删除字符串的那部分,所以我使用了 regioEnd 函数,但它将 regioend 设置为行尾。
Pattern pattern = Pattern.compile("\\d+.\\d+");
String line = "4:12testline to test the matcher!";
System.out.println(line);
Matcher matcher = pattern.matcher(line);
int index = matcher.regionEnd();
System.out.println(line.substring(index));
我在这里做错了什么?