提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
第一个字符可以是小写的a到z或大写的A到Z。
import java.util.regex.Matcher; import java.util.regex.Pattern; /*时 代 J a v a - nowjava.com 提 供*/ public class Main { public static void main(String[] args) { Pattern pattern = Pattern.compile("[a-zA-Z][0-5]"); Matcher matcher = pattern.matcher("r2"); if (matcher.matches()) System.out.println("Match."); else System.out.println("Does not match."); } }