Java检查有效的字符串格式

时间:2015-10-30 09:48:08

标签: java regex

大家好我需要检查字符串是否有效格式。

示例字符串:

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);

但是它变成了真而不是虚假。有任何想法吗?我很感激任何帮助。谢谢!

0 个答案:

没有答案