mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
regex: fix quantifier notes
This commit is contained in:
parent
fae2e019ae
commit
94d56c9a63
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ A quantifier specifies how many instances of the previous element (which can be
|
||||||
- `+`: Matches the previous element one or more times.
|
- `+`: Matches the previous element one or more times.
|
||||||
- `?`: Matches the previous element zero or one time.
|
- `?`: Matches the previous element zero or one time.
|
||||||
- `{n}`: Matches the previous element exactly n times.
|
- `{n}`: Matches the previous element exactly n times.
|
||||||
- `{n}`: Matches the previous element at least n times.
|
- `{n,}`: Matches the previous element at least n times.
|
||||||
- `{n,m}`: Matches the previous element at least n times, but no more than m times.
|
- `{n,m}`: Matches the previous element at least n times, but no more than m times.
|
||||||
- `*?`: Matches the previous element zero or more times, but as few times as possible.
|
- `*?`: Matches the previous element zero or more times, but as few times as possible.
|
||||||
- `+?`: Matches the previous element one or more times, but as few times as possible.
|
- `+?`: Matches the previous element one or more times, but as few times as possible.
|
||||||
|
|
Loading…
Add table
Reference in a new issue