Lines Matching refs:matches
6 * `"x*"` matches the pattern `"x"` zero or more times.
7 * `"x+"` matches `"x"` one or more times.
8 * `"x?"` matches `"x"` zero or one time.
9 * `"[abcd]"` matches any of the characters, `"a"`, `"b"`, `"c"`, and
10 `"d"`. A character range such as `"[a-z]"` matches any character between
11 `"a"` and `"z"`. `"[^abc]"` matches any character which is not `"a"`,
13 * `"x|y"` matches either pattern `"x"` or pattern `"y"`
14 * `(x)` matches `"x"` and captures it.
15 * `"^"` matches the beginning of the string.
16 * `"$"` matches the end of the string.
17 * "\<" matches the beginning of a word.
18 * "\>" matches the end of a word.
45 of elements indicated by `indices` of all successful matches. If
47 successful matches.