Returns whether the input matches the 18-digit ID card number regex.
static bool isIDCard18(String input) { return matches(regexIdCard18, input); }