EdgeNGramTokenFilter Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Generates n-grams of the given size(s) starting from the front or the back of an input token. This token filter is implemented using Apache Lucene.
public class EdgeNGramTokenFilter : Azure.Search.Documents.Indexes.Models.TokenFilter
type EdgeNGramTokenFilter = class
inherit TokenFilter
Public Class EdgeNGramTokenFilter
Inherits TokenFilter
- Inheritance
Constructors
EdgeNGramTokenFilter(String) |
Initializes a new instance of EdgeNGramTokenFilter. |
Properties
MaxGram |
The maximum n-gram length. Default is 2. |
MinGram |
The minimum n-gram length. Default is 1. Must be less than the value of maxGram. |
Name |
The name of the token filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters. (Inherited from TokenFilter) |
Side |
Specifies which side of the input the n-gram should be generated from. Default is Front. |
Applies to
Azure SDK for .NET