Wildcards

Prev Next

TQL allows queries to include wildcards that allow you to match against trailing and leading query strings using the wildcard operator ( * ).

For example, the following query uses a wildcard at the end of the query string and returns all results that include URIs that start with /google.com:

  uri:/google.com*

The following query returns all results that include URIs that end with index.php:

  uri:*index.php

Note

Wildcards specified before the query string are subject to the same restrictions as regular expressions.