Hadoop Glob Patterns
Pattern |
Description |
---|---|
|
Matches any single character
|
|
Matches zero or more characters
|
|
Matches a single character from character set {a,b,c}.
|
|
Matches a single character from the character range {a…b}. Note that the “^”
character must occur immediately to the right of the opening bracket.
|
|
Matches a single character that is not from character set or range {a}. Note that
the “^”character must occur immediately to the right of the opening bracket.
|
|
Removes (escapes) any special meaning of character c.
|
|
Matches a string from the string set {ab, cd}.
|
|
Matches a string from the string set {ab, cde, cfh}.
|