Update README.md (#31)

This commit is contained in:
Tibor Martini 2017-08-12 02:41:43 +02:00 committed by Zeeshan Ahmed
parent c1cfb1e6fe
commit d60813e00f

View File

@ -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>.