Basic Regular Expressions (BRE)
We'll cover the following...
Metachar .
Matches any single character.
Example:
x.z matches "xyz", etc., but within bracket expressions, the dot character matches a literal dot, e.g., [x.y] matches only "x", ".", or "y"
Metachar [ ]
Matches a single character that is contained within the brackets.
Example:
...
Ask