You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/en-us/06-regex.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ and lowercase letters, all numbers, all punctuation, and some other symbols.
34
34
35
35
A special character is a character with special meaning in a regular expression and is also the core matching syntax of a regular expression. See the table below:
|`*`| matches the previous subexpression zero or more times. For example, `foo*` matches `fo` and `foooo`. `*` is equivalent to `{0,}`. |
58
58
|`+`| matches the previous subexpression one or more times. For example, `foo+` matches `foo` and `foooo` but does not match `fo`. `+` is equivalent to `{1,}`. |
@@ -84,7 +84,7 @@ We use a simple example to briefly introduce the use of this library. Consider t
0 commit comments