File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,13 @@ range := [A-Z]
6060The above symbol "set" would match one character of either "a", "b" or "c".
6161The symbol "range" would match any character, "A" to "Z", inclusive.
6262Currently, only matching for 7-bit ascii literals and character classes is defined, as that is all that is required by this specification.
63+ Multiple character ranges and explicit characters can be specified in a single character classes, as follows:
64+
65+ ```
66+ multipleranges := [a-zA-Z=-]
67+ ```
68+
69+ The above matches the characters in the range ` A ` to ` Z ` , ` a ` to ` z ` and the individual characters ` - ` and ` = ` .
6370
6471Expressions can be made up of one or more expressions, such that one must be followed by the other.
6572This is known as an implicit concatenation operator.
You can’t perform that action at this time.
0 commit comments