Tabulify - Glob Pattern
Table of Contents
Glob Pattern
Glob pattern are used in Tabulify to select objects such as :
- resource (in data selector)
If you are new to glob pattern, see this page Tabulify - How to select data resources with Glob Pattern
Related How-to's
Wildcard support
The following wildcard are supported in order to define the glob pattern:
- * that matches every characters
- ** matches all container (directories/schema). Use for recursive search (for instance **/foo.md will search all foo.md files in all sub directories)
- ? that matches a single character
- [] that matches a class of character (Example: [0-9] matches all digit)
- [!] that does not match a character in the class of character. (Example: [!0-9] will not match a digit)
- {pattern1,pattern2,..} to match a collection of sub-pattern (Example: {temp*,tmp*} matches all data resource name that begins with temp or tmp). It creates also a group for back-referencing.