Check for Valid Mobile Number 10:55:00 Posted by Kumanan Utils private static boolean isValidPhoneNumber(String mobile) { String regEx = "^[0-9]{10}$"; return mobile.matches(regEx);} Email ThisBlogThis!Share to XShare to Facebook