wildcard

package
v3.14.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 13, 2026 License: AGPL-3.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Has

func Has(pattern string) bool

Has returns true if the input pattern has a wildcard (pattern).

func Match

func Match(pattern, name string) (matched bool)

Match - finds whether the text matches/satisfies the pattern string. supports '*' and '?' wildcards in the pattern string. unlike path.Match(), considers a path as a flat name space while matching the pattern. The difference is illustrated in the example here https://play.golang.org/p/Ega9qgD4Qz .

func MatchAsPatternPrefix

func MatchAsPatternPrefix(pattern, text string) bool

MatchAsPatternPrefix matches text as a prefix of the given pattern. Examples:

| Pattern | Text    | Match Result |
====================================
| abc*    | ab      | True         |
| abc*    | abd     | False        |
| abc*c   | abcd    | True         |
| ab*??d  | abxxc   | True         |
| ab*??d  | abxc    | True         |
| ab??d   | abxc    | True         |
| ab??d   | abc     | True         |
| ab??d   | abcxdd  | False        |

This function is only useful in some special situations.

func MatchSimple

func MatchSimple(pattern, name string) bool

MatchSimple - finds whether the text matches/satisfies the pattern string. supports '*' wildcard in the pattern and ? for single characters. Unlike Match, reaching '?' after name is exhausted accepts the rest of the pattern. For example, both "a?" and "a?b" match "a".

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL