mirror of
https://github.com/ziishaned/learn-regex.git
synced 2025-09-10 23:57:39 -04:00
Fix typo
This commit is contained in:
parent
8be5e09289
commit
c2bafa6f8b
@ -169,7 +169,7 @@ letter `c`, followed by any number of character, followed by the lowercase chara
|
|||||||
|
|
||||||
### 2.3.3 The Question Mark
|
### 2.3.3 The Question Mark
|
||||||
|
|
||||||
In regular expression the meta character `?` makes the preceding character optional. This symbol matches zero or more repetitions of
|
In regular expression the meta character `?` makes the preceding character optional. This symbol matches zero or one instance of
|
||||||
the preceding character. For example the regular expression `[T]?he` means: Optional the uppercase letter `T`, followed by the lowercase
|
the preceding character. For example the regular expression `[T]?he` means: Optional the uppercase letter `T`, followed by the lowercase
|
||||||
character `h`, followed by the lowercase character `e`.
|
character `h`, followed by the lowercase character `e`.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user