Regular Expressions

you can use regular expression in search field. Note it something else than using of wildcards.

Usage examples

  • List all names starting with "a"
    ^a
    
  • List all names containing strings "SAN" and "port"
    SAN.*port
    
  • List all names ending with string "port"
    port$
    
  • List all names "port0-9"
    port[0-9]
    

Learn more about regex

regexr.com
wikipedia.org