Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Leer Advanced Search Function 1/2 | Regex Tutorial
Regex Wizards (Project)
course content

Cursusinhoud

Regex Wizards (Project)

book
Advanced Search Function 1/2

The Search function also provides some advanced matching combinations. We will now introduce the most famous one and later practice them in the exercise:

  • \A - Matches if the specified characters are at the start of a string;
  • \b - Matches if the specified characters are at the beginning or end of a word;
  • \D - Matches any non-decimal digit. Equivalent to [^0-9];
  • \d - Matches any decimal digit. Equivalent to [0-9];
  • \B - Opposite of \b. Matches if the specified characters are not at the beginning or end of a word;
  • . - period matches any single character.
Taak

Swipe to start coding

  1. Import re.
  2. Define a text variable as "The cat in the hat".
  3. Search for any 3 characters finishing with "at".
  4. Print the output.

Oplossing

Mark tasks as Completed
Switch to desktopSchakel over naar desktop voor praktijkervaringGa verder vanaf waar je bent met een van de onderstaande opties
Was alles duidelijk?

Hoe kunnen we het verbeteren?

Bedankt voor je feedback!

Sectie 1. Hoofdstuk 3

Vraag AI

expand
ChatGPT

Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.

course content

Cursusinhoud

Regex Wizards (Project)

book
Advanced Search Function 1/2

The Search function also provides some advanced matching combinations. We will now introduce the most famous one and later practice them in the exercise:

  • \A - Matches if the specified characters are at the start of a string;
  • \b - Matches if the specified characters are at the beginning or end of a word;
  • \D - Matches any non-decimal digit. Equivalent to [^0-9];
  • \d - Matches any decimal digit. Equivalent to [0-9];
  • \B - Opposite of \b. Matches if the specified characters are not at the beginning or end of a word;
  • . - period matches any single character.
Taak

Swipe to start coding

  1. Import re.
  2. Define a text variable as "The cat in the hat".
  3. Search for any 3 characters finishing with "at".
  4. Print the output.

Oplossing

Mark tasks as Completed
Switch to desktopSchakel over naar desktop voor praktijkervaringGa verder vanaf waar je bent met een van de onderstaande opties
Was alles duidelijk?

Hoe kunnen we het verbeteren?

Bedankt voor je feedback!

Sectie 1. Hoofdstuk 3
Onze excuses dat er iets mis is gegaan. Wat is er gebeurd?
some-alt