An error occurred during search results load.
Glob mask is a text pattern format that uses wildcard characters. It is supported by conditional obfuscation, resource encryption, and resource sanitization.
The list of available wildcard characters is presented in the table below:
Table 7.2. The list of available wildcard characters
Wildcard | Description |
---|---|
?
| Matches a single character |
*
| Matches any number of characters, including zero |
Wildcard characters are combined into a string to form a glob mask with the desired properties.
When a glob mask starts with ^
and ends with $
characters, it is switched to a more advanced regex mask mode.
Table 7.3. Glob mask examples
Glob Mask | Description |
---|---|
*
| Matches any string, including an empty string |
ABC*
| Matches any string starting with "ABC" |
*DEF
| Matches any string ending with "DEF" |
ABC*DEF
| Matches any string starting with "ABC" and ending with "DEF" |
ABCDEF
| Matches "ABCDEF" string exactly |
ABC?
| Matches any string containing four characters and starting with "ABC" |
?
| Matches any string containing a single character |
?*
| Matches any string containing one or more characters |