提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
匹配存在的任何数字或数字,在这种情况下
public class Main { public static void main(String[] args) throws Exception { String str = "";//NowJava.com - 时代Java str = "I love Java 8!"; boolean result = str.matches("I love Java [0-9]!"); System.out.println(result); } }