提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
注意数字序列之间的空格字符。
/* 来 自 时 代 J a v a - N o w J a v a . c o m*/ public class Main { public static void main(String[] args) throws Exception { String str = ""; str = "I love Java 8!"; boolean result = str.matches("I love .*[ 0-9]!"); System.out.println(result); // The following String also matches. str = "I love Jython 2.5.4!"; result = str.matches("I love .*[ 0-9]!"); System.out.println(result); } }