CommencerCommencer gratuitement

Hunting for phone numbers

For your first task you are going to pull out the phone numbers from this vector of contact information:

contact

You'll assume the phone numbers you are looking for follow the American standard of a three digit area code, a three digit exchange and then a four digit number, but each part could be separated by spaces or various punctuation symbols.

Cet exercice fait partie du cours

String Manipulation with stringr in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Create a three digit pattern
three_digits <- ___

# Test it
str_view_all(contact, pattern = three_digits)
Modifier et exécuter le code