Search and filtering on the dashboard
You can use wildcards and extglob expressions to filter items on the dashboard.
Syntax:
- * - matches any number of characters
- ? - matches a single character
- […] - matches any of the enclosed characters. For example: [a-z] , [a-d1-9]
?(pattern-list) -Matches zero or one occurrence of the given patterns. pattern-list is a list of one or more patterns separated by a ‘|’.*(pattern-list)- Matches zero or more occurrences of the given patterns.+(pattern-list)- Matches one or more occurrences of the given patterns.@(pattern-list)- Matches one of the given patterns.!(pattern-list) -Matches anything except one of the given patterns
Examples:
MyProject*Build+(Build|Release)+(MyProject|OtherProject)*Build!(temp)