regex: fix quantifier notes

This commit is contained in:
Marcello 2024-12-04 19:24:36 +01:00
parent fae2e019ae
commit 94d56c9a63
Signed by: m-lamonaca
SSH key fingerprint: SHA256:8db8uii6Gweq7TbKixFBioW2T8CbgtyFETyYL3cr3zk

View file

@ -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 zero or one time.
- `{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.
- `*?`: 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.