1. 程式人生 > >要求使用者名稱由字母、數字、_所組成,且範圍在6-15位

要求使用者名稱由字母、數字、_所組成,且範圍在6-15位

public class Isnum {
    public static void main(String[] args) throws Exception {
        String num = "hello";
        String regex = "\\w{6,15}";
        System.out.println(num.matches(regex));
    }
}