PatternReplaceTokenFilter Class

Definition

A character filter that replaces characters in the input string. It uses a regular expression to identify character sequences to preserve and a replacement pattern to identify characters to replace. For example, given the input text "aa bb aa bb", pattern "(aa)\s+(bb)", and replacement "$1#$2", the result would be "aa#bb aa#bb". This token filter is implemented using Apache Lucene. http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternReplaceFilter.html

[Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.PatternReplaceTokenFilter")]
public class PatternReplaceTokenFilter : Microsoft.Azure.Search.Models.TokenFilter
[<Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.PatternReplaceTokenFilter")>]
type PatternReplaceTokenFilter = class
    inherit TokenFilter
Public Class PatternReplaceTokenFilter
Inherits TokenFilter
Inheritance
PatternReplaceTokenFilter
Attributes
Newtonsoft.Json.JsonObjectAttribute

Constructors

PatternReplaceTokenFilter()

Initializes a new instance of the PatternReplaceTokenFilter class.

PatternReplaceTokenFilter(String, String, String)

Initializes a new instance of the PatternReplaceTokenFilter class.

Properties

Name

Gets or sets 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)
Pattern

Gets or sets a regular expression pattern.

Replacement

Gets or sets the replacement text.

Methods

Validate()

Validate the object.

Applies to