File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1781,9 +1781,12 @@ The following wildcards are supported in patterns for
1781
1781
``? ``
1782
1782
Matches one non-separator character.
1783
1783
``[seq] ``
1784
- Matches one character in *seq *.
1784
+ Matches one character in *seq *, where *seq * is a sequence of characters.
1785
+ Range expressions are supported; for example, ``[a-z] `` matches any lowercase ASCII letter.
1786
+ Multiple ranges can be combined: ``[a-zA-Z0-9_] `` matches any ASCII letter, digit, or underscore.
1787
+
1785
1788
``[!seq] ``
1786
- Matches one character not in *seq *.
1789
+ Matches one character not in *seq *, where * seq * follows the same rules as above .
1787
1790
1788
1791
For a literal match, wrap the meta-characters in brackets.
1789
1792
For example, ``"[?]" `` matches the character ``"?" ``.
You can’t perform that action at this time.
0 commit comments