Skip to content

Commit

Permalink
regex: allow "." to be used as a simple quantifier
Browse files Browse the repository at this point in the history
  • Loading branch information
lukem committed Nov 11, 2023
1 parent a1c35bc commit ae1ed5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jsonschema-core.md
Expand Up @@ -403,7 +403,8 @@ tokens:
- simple character classes ("[abc]"), range character classes ("[a-z]");
- complemented simple character classes ("[^abc]"),
complemented range character classes ("[^a-z]");
- simple quantifiers: "+" (one or more), "*" (zero or more), "?" (zero or one),
- simple quantifiers: "." (any character except line terminator),
"+" (one or more), "*" (zero or more), "?" (zero or one),
and their lazy versions ("+?", "*?", "??");
- range quantifiers: "{x}" (exactly x occurrences), "{x,y}" (at least x, at most
y, occurrences), {x,} (x occurrences or more), and their lazy versions;
Expand Down

0 comments on commit ae1ed5d

Please sign in to comment.