Skip to main content

About Quick Search Box Rules

Use Quick Search above the tree node(s) with wild card to locate nodes of interest.

Use the x button next to the Quick Search box to collapse all nodes in the tree.

Tree nodes are highlighted as you type.

Wild Card possible combinations:

           "*.*"  Select any string before the last period and after the last period
            ".*"  Select any string before the last period and after the last period
            "*."  Select strings with no period
             "."  Select strings with no period
             "*"  Select any String
       "*&char*"  Select strings with matching middle characters
       "*.&type"  Select strings of specific type
        ".&type"  Select strings of specific type
       "&name.*"  Select specific string of any type
   "&name.&type"  Select specific string and type
         "&name"  Select strings that start with("&name")
    

Any other combination is used as a template where '*'s in the wild card are replaced by the character in the exact position of input string.

Examples

     *.123         selects all strings with extension of "123".
     
     a*.abc        selects all strings that start with "a" and end with extension of "abc".
     
     company.*     selects all strings that contain "company".
     
     *bz*          selects all strings that contain characters "bz". 
     
     ab*d*f.*h     selects all strings with any character in position 3, 5 and 8.
                   Example: "abxdyf.zh" is selected.