Documentation ¶
Overview ¶
Package pattern implements lightweight parsable string patterns.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Pattern ¶
type Pattern interface { // String returns the definition of the pattern parsable by Parse. String() string // Match returns true if s matches this pattern, otherwise false. Match(s string) bool }
Pattern can either match or not match a string.
func MustParse ¶
MustParse parses the pattern according to the specification of Parse. In addition, it panics if there is an error in parsing the given string as a pattern.
See Parse for more details.
func Parse ¶
Parse parses a pattern.
Ordered by precedence, s can be:
- "": matches nothing
- "*": matches anything
- "<S>" where S does not have a colon: same as "exact:<S>"
- "exact:<S>": matches only string S
- "text:<S>": same as "exact:<S>" for backward compatibility
- "regex:<E>": matches all strings matching regular expression E. If E does not start/end with ^/$, they are added automatically.
Anything else will cause an error.
Click to show internal directories.
Click to hide internal directories.