我希望使用回归或任何其他更简单的方法(如果可能)匹配此模式" L101"(字符串后跟三位数)

时间:2018-03-15 11:08:42

标签: design-patterns matching

 String empId;

我想检查一下empId是否符合模式" L101"

1 个答案:

答案 0 :(得分:0)

public class A {
    public static void main(String[] args) {
        System.out.println(isValidEmpId("L101324", "L101"));
    }

    private static boolean isValidEmpId(String empId, String pattern) {
        boolean isMatch = false;
        if (empId.indexOf(pattern) != -1) {
            isMatch = true;
        } else {
            isMatch = false;
        }
        return isMatch;
    }

}