大家好我需要检查字符串是否有效格式。
示例字符串:
John 3:16 = true
Luke 1:1 = true
Marth232:f = false
这就是我提出的:
Pattern pattern = Pattern.compile("[\\s]|:");
Matcher m = pattern.matcher("John12:3");
boolean b = m.find();
System.out.println("Boolean: " + b);
但是它变成了真而不是虚假。有任何想法吗?我很感激任何帮助。谢谢!