Enhanced query dialog (Professional Edition only)

With the new enhanced query dialog you can build up complex queries and save them for use later. Use the same query dialog when searching for clips in the catalog locally or querying the remote database (with the optional Workgroup Server).

Named queries

Remote searches

When querying the remote database (with optional Workgroup Server only) you have the following options:

Local searches

Regular expressions

In regular expressions many characters have special meaning to match particular groups of characters. For example, '^' and '$' match the start and end of a line respectively, '.' matches any character, '[A-Za-z]' matches any upper case or lower case letter, '\s' or '[:space:]' means any white space character, '\d' or '[0-9]' or '[:digit:]' means any digit, '\S' means any visible (non-space) character, and '\b' matches a word boundary. '*' means the previous character can match any number of times (0 or more), '?' means it's optional (matches 0 or 1 times), and '+' means matches 1 or more times. To prevent one of these characters from having its special meaning precede it with a '\'. For example, 'h[ea]llo' or '(hello|hallo)' will match 'hello' or 'hallo', while '\(.*\)' will search for pairs of parentheses.

Using the Search and Replace tool you can search for a regular expression and use the results of that expression in the replacement. Any text that matches a sub-expression in the search term inside parentheses '(' and ')' can be inserted into the replacement text using '\1' for the first term and so on. For example, you could search for '^(\S+) (\S+)' and replace it with '\2 \1' to swap the first two words of each line, or search for '.*XXX.*' and replace it with nothing to delete all comments tagged with the text 'XXX'.


Next
Copyright © 2002-2003 Square Box Systems Ltd.