Apache Lucene.Net 2.1 Class Library API

WildcardQuery Class

Implements the wildcard search query. Supported wildcards are

*
, which matches any character sequence (including the empty one), and
?
, which matches any single character. Note this query can be slow, as it needs to iterate over many terms. In order to prevent extremely slow WildcardQueries, a Wildcard term should not start with one of the wildcards
*
or
?
.

For a list of all members of this type, see WildcardQuery Members.

System.Object
   Lucene.Net.Search.Query
      Lucene.Net.Search.MultiTermQuery
         Lucene.Net.Search.WildcardQuery

public class WildcardQuery : MultiTermQuery

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Requirements

Namespace: Lucene.Net.Search

Assembly: Lucene.Net (in Lucene.Net.dll)

See Also

WildcardQuery Members | Lucene.Net.Search Namespace |