is_phone_number: Test if a string is a phone number.

Description Usage Arguments Value Examples

View source: R/phone_numbers.R

Description

Strictly works for only US phone numbers.

Usage

1

Arguments

.x

A string or numeric vector.

Value

A logical value indicating if that string is a phone number.

Examples

1
2
3
4
5
# Examples
is_phone_number("hello") # FALSE
is_phone_number(65884) # FALSE
is_phone_number("111-333-5555") # TRUE
is_phone_number(1113335555) # TRUE

Example output

[1] FALSE
[1] FALSE
[1] TRUE
[1] TRUE

detector documentation built on May 2, 2019, 9:19 a.m.