Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean isCorrentLength(String str, int length) {
String telRegex = "[0-9a-z]{" + length + "}";
return str == null ? false : str.matches(telRegex);
}
}