Returns whether the input matches the 15-digit ID card number regex.
static bool isIDCard15(String input) { return matches(regexIdCard15, input); }