We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a787a2 commit a3a7b3aCopy full SHA for a3a7b3a
README.md
@@ -498,7 +498,7 @@ The `g` modifier is used to perform a global match (find all matches rather than
498
stopping after the first match). For example, the regular expression`/.(at)/g`
499
means: any character except new line, followed by lowercase character `a`,
500
followed by lowercase character `t`. Because we provided `g` flag at the end of
501
-the regular expression now it will find every matches from whole input string.
+the regular expression now it will find all matches in the input string, not just the first one (which is the default behavior).
502
503
<pre>
504
"/.(at)/" => The <a href="#learn-regex"><strong>fat</strong></a> cat sat on the mat.
0 commit comments