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 @@ -1661,9 +1661,12 @@ The following wildcards are supported in patterns for
16611661``? ``
16621662 Matches one non-separator character.
16631663``[seq] ``
1664- Matches one character in *seq *.
1664+ Matches one character in *seq *, where *seq * is a sequence of characters.
1665+ Range expressions are supported; for example, ``[a-z] `` matches any lowercase ASCII letter.
1666+ Multiple ranges can be combined: ``[a-zA-Z0-9_] `` matches any ASCII letter, digit, or underscore.
1667+
16651668``[!seq] ``
1666- Matches one character not in *seq *.
1669+ Matches one character not in *seq *, where * seq * follows the same rules as above .
16671670
16681671For a literal match, wrap the meta-characters in brackets.
16691672For example, ``"[?]" `` matches the character ``"?" ``.
You can’t perform that action at this time.
0 commit comments