Lines Matching full:match
35 * ^ Match beginning of a buffer
36 * $ Match end of a buffer
38 * [...] Match any character from set
39 * [^...] Match any character but ones from set
40 * \s Match whitespace
41 * \S Match non-whitespace
42 * \d Match decimal digit
43 * \r Match carriage return
44 * \n Match newline
45 * + Match one or more times (greedy)
46 * +? Match one or more times (non-greedy)
47 * * Match zero or more times (greedy)
48 * *? Match zero or more times (non-greedy)
49 * ? Match zero or once
50 * \xDD Match byte with hex value 0xDD
51 * \meta Match one of the meta character: ^$().[*+?\
66 int anchored; /* Must match from string start */
85 * Return 1 if match, 0 if no match.