Merge pull request #224 from 0x4kgi/patch-1

This commit is contained in:
Zeeshan Ahmad 2020-12-23 18:41:36 +04:00 committed by GitHub
commit 1d7820a034
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -237,7 +237,7 @@ clarified that`t` is the last `t` in the sentence.
In regular expressions, 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 uppercase
`T`, followed by a lowercase `h`, followed bya lowercase `e`.
`T`, followed by a lowercase `h`, followed by a lowercase `e`.
<pre>
"[T]he" => <a href="#learn-regex"><strong>The</strong></a> car is parked in the garage.