Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Challenge: Validate Phone Numbers | Introduction to Regular Expressions
Python Regular Expressions

bookChallenge: Validate Phone Numbers

Write a function that checks whether a given string matches the format of a US phone number such as 123-456-7890. The format requires:

  • Three digits;
  • A dash (-);
  • Three more digits;
  • Another dash (-);
  • Four digits.

Use regular expressions to perform this validation. The function should return True if the input string matches the required pattern, and False otherwise.

Example valid phone number:

  • 123-456-7890

Example invalid phone numbers:

  • 1234567890
  • 123-45-6789
  • abc-def-ghij
Oppgave

Swipe to start coding

Write a function named is_valid_phone_number that returns True if the input matches the US phone number format 123-456-7890, and False otherwise. The phone number must have:

  • Three digits;
  • A dash;
  • Three digits;
  • A dash;
  • Four digits.

Use regular expressions for the validation. If the string matches this pattern exactly, return True; otherwise, return False.

Løsning

Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 1. Kapittel 5
single

single

Spør AI

expand

Spør AI

ChatGPT

Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår

close

Awesome!

Completion rate improved to 6.67

bookChallenge: Validate Phone Numbers

Sveip for å vise menyen

Write a function that checks whether a given string matches the format of a US phone number such as 123-456-7890. The format requires:

  • Three digits;
  • A dash (-);
  • Three more digits;
  • Another dash (-);
  • Four digits.

Use regular expressions to perform this validation. The function should return True if the input string matches the required pattern, and False otherwise.

Example valid phone number:

  • 123-456-7890

Example invalid phone numbers:

  • 1234567890
  • 123-45-6789
  • abc-def-ghij
Oppgave

Swipe to start coding

Write a function named is_valid_phone_number that returns True if the input matches the US phone number format 123-456-7890, and False otherwise. The phone number must have:

  • Three digits;
  • A dash;
  • Three digits;
  • A dash;
  • Four digits.

Use regular expressions for the validation. If the string matches this pattern exactly, return True; otherwise, return False.

Løsning

Switch to desktopBytt til skrivebordet for virkelighetspraksisFortsett der du er med et av alternativene nedenfor
Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 1. Kapittel 5
single

single

some-alt