Skip to content

Commit

Permalink
regex: fix quantifier notes
Browse files Browse the repository at this point in the history
  • Loading branch information
m-lamonaca committed Dec 4, 2024
1 parent fae2e01 commit 94d56c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/misc/regular-expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 94d56c9

Please sign in to comment.