mirror of
https://github.com/ziishaned/learn-regex.git
synced 2025-09-12 08:36:06 -04:00
Update README.md (#31)
This commit is contained in:
parent
c1cfb1e6fe
commit
d60813e00f
@ -174,7 +174,7 @@ zero or more spaces.
|
|||||||
### 2.3.2 The Plus
|
### 2.3.2 The Plus
|
||||||
|
|
||||||
The symbol `+` matches one or more repetitions of the preceding character. For example, the regular expression `c.+t` means: lowercase
|
The symbol `+` matches one or more repetitions of the preceding character. For example, the regular expression `c.+t` means: lowercase
|
||||||
letter `c`, followed by any number of character, followed by the lowercase character `t`.
|
letter `c`, followed by at least one character, followed by the lowercase character `t`.
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
"c.+t" => The fat <a href="#learn-regex"><strong>cat sat on the mat</strong></a>.
|
"c.+t" => The fat <a href="#learn-regex"><strong>cat sat on the mat</strong></a>.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user