Lines Matching full:matches
22 # * matches 0 or more characters
23 # ? matches 1 character
24 # \x matches the character 'x'
28 # matches exactly the word 'e', twice.
33 # The pattern character '?' matches exactly 1 character, the pattern character
34 # '*' matches 0 or more characters. The whole pattern matches all words that
40 # A pattern without placeholders only matches itself.
79 # [...] matches 1 character from the listed characters
80 # [^...] matches 1 character from the unlisted characters
81 # [a-z] matches 1 character from the range 'a' to 'z'
82 # [z-a] matches 1 character from the range 'a' to 'z'
94 # [] matches never
99 # a[]b matches never
104 # [^] matches exactly 1 arbitrary character
109 # a[^]b matches 'a', then exactly 1 arbitrary character, then 'b'
114 # [Nn0] matches exactly 1 character from the set 'N', 'n', '0'
119 # [a-c] matches exactly 1 character from the range 'a' to 'c'
124 # [c-a] matches the same as [a-c]
130 # matches a single character, except for 'a', 'b', 'c', '6' or
136 # [\] matches a single backslash; no escaping takes place in
162 # [-] Matches a single '-' since the '-' only becomes part of a
182 # * matches 0 or more characters
183 # ? matches 1 character
217 # \: matches a colon
222 # ${:U\:} matches a colon
286 # [ Incomplete empty character list, never matches.
293 # [^ Incomplete negated empty character list, matches any single
301 # [-x1-3 Incomplete character list, matches those elements that can be
309 # *[-x1-3 Incomplete character list after a wildcard, matches those
318 # Incomplete negated character list, matches any character
341 # range, matches only the 'x'.
349 # character range; matches each word that does not have an 'x'
352 # XXX: Even matches strings that are longer than a single
360 # [:] matches never since the ':' starts the next modifier
377 # The pattern '\' never matches.
383 # The pattern ':\' never matches.