...

Package fnmatch

import "github.com/danwakefield/fnmatch"
Overview
Index

Overview ▾

Provide string-matching based on fnmatch.3

Constants

const (
    FNM_NOESCAPE = (1 << iota)
    FNM_PATHNAME
    FNM_PERIOD

    FNM_LEADING_DIR
    FNM_CASEFOLD

    FNM_IGNORECASE = FNM_CASEFOLD
    FNM_FILE_NAME  = FNM_PATHNAME
)

func Match

func Match(pattern, s string, flags int) bool

Matches the pattern against the string, with the given flags, and returns true if the match is successful. This function should match fnmatch.3 as closely as possible.