Lines Matching full:hello
26 // "hello (\\w+) world" -- \w matches a "word" character
28 // "hello\\s+world" -- \s matches any whitespace character
30 // "(?i)hello" -- (?i) turns on case-insensitive matching
40 // CHECK(RE2::FullMatch("hello", "h.*o"));
43 // CHECK(!RE2::FullMatch("hello", "e"));
92 // CHECK(RE2::PartialMatch("hello", "ell"));