Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 6: Navigating with HTML Links and Structuring Data with Tables!
Instruction
How Regular Expressions Work
Regular expressions use symbols and syntax to define matching rules:
-
\d
: Represents any digit (0-9).
-
{n}
: Specifies exactlyn
repetitions of the previous character or group.
-
{n,}
: Specifies at leastn
repetitions of the previous character or group.
-
?
: Makes the previous character or group optional.
-
[A-Za-z]
: Matches any uppercase or low...