Merge 9551e407d420da86d9b07cb4ac927a6cd1c9cdf5 into 22901bc1db0eb357dc5b2bdc5b2476f97b887b74

This commit is contained in:
cricri-pingouin 2023-10-14 22:10:36 -03:00 committed by GitHub
commit cfdeb9a9b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -223,6 +223,12 @@ example, the regular expression `c.+t` means: a lowercase `c`, followed by
at least one character, followed by a lowercase `t`. It needs to be
clarified that`t` is the last `t` in the sentence.
<pre>
"\s+cat\s+" => The fat<a href="#learn-regex"><strong> cat </strong></a>sat on the concatenation.
</pre>
[Test the regular expression](https://regex101.com/r/gGrwuz/1)
<pre>
"c.+t" => The fat <a href="#learn-regex"><strong>cat sat on the mat</strong></a>.
</pre>