has_national_identification_numbers {detector} | R Documentation |
Test if a character vector has any national identification numbers.
has_national_identification_numbers(.x)
.x |
A character vector. |
A logical value indicating if that string has any national identification numbers.
# Examples
# Examples
has_national_identification_numbers("hello") # FALSE
has_national_identification_numbers(65884) # FALSE
has_national_identification_numbers("111-33-5555") # TRUE
has_national_identification_numbers(1113335555) # FALSE