提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
正则表达式模式指定字符串必须包含三个数字,一个连字符,两个数字,另一个连字符和四个数字。
import java.util.regex.Matcher;// from 时代Java公众号 import java.util.regex.Pattern; public class Main { public static void main(String[] args) { Pattern pattern = Pattern.compile("\\d\\d\\d-\\d\\d-\\d\\d\\d\\d"); Matcher matcher = pattern.matcher("779-12-1212"); if (matcher.matches()) System.out.println("Match."); else System.out.println("Does not match."); } }