Lines Matching refs:pattern
63 // (There are a few other methods that do not match this pattern.)
446 func MatchReader(pattern string, r io.RuneReader) (matched bool, err error) {
447 re, err := Compile(pattern)
457 func MatchString(pattern string, s string) (matched bool, err error) {
458 re, err := Compile(pattern)
468 func Match(pattern string, b []byte) (matched bool, err error) {
469 re, err := Compile(pattern)