java 正则判断格式 [00:46.000 --> 00:48.000] 第二不能对整人
时间: 2023-02-09 11:08:39 浏览: 99
java类对正则表达式的处理
4星 · 用户满意度95%
可以使用Java中的正则表达式来判断字符串是否符合格式 "[00:46.000 --> 00:48.000]" 。 下面是一个示例代码:
```
String pattern = "\\[\\d{2}:\\d{2}\\.\\d{3}\\s-->\\s\\d{2}:\\d{2}\\.\\d{3}\\]";
String input = "[00:46.000 --> 00:48.000]";
if (input.matches(pattern)) {
System.out.println("The input matches the pattern.");
} else {
System.out.println("The input does not match the pattern.");
}
```
这个示例代码会输出 "The input matches the pattern.",因为输入的字符串符合了定义的正则表达式。
如果需要确保第二部分不能对整人,需要在正则表达式中加入对第二部分的限制。
阅读全文