Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PatternReplaceTokenFilter

Package version

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.

Hierarchy

  • PatternReplaceTokenFilter

Index

Properties

name

name: string

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.

odatatype

odatatype: "#Microsoft.Azure.Search.PatternReplaceTokenFilter"

Polymorphic Discriminator

pattern

pattern: string

A regular expression pattern.

replacement

replacement: string

The replacement text.

Generated using TypeDoc