package com.fuzamei.constant; public class RegexConstant { private RegexConstant(){ throw new AssertionError("can not be instaniated"); } //车牌号正则表达式 public static final String CAR_NO="^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领]{1}[A-Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1}$"; //订单正则表达式 public static final String ORDER_ID="^\\d{8}$"; }