SearchModelFactory.PatternReplaceTokenFilter(String, String, String) Method
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.
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.
public static Azure.Search.Documents.Indexes.Models.PatternReplaceTokenFilter PatternReplaceTokenFilter(string name = default, string pattern = default, string replacement = default);
static member PatternReplaceTokenFilter : string * string * string -> Azure.Search.Documents.Indexes.Models.PatternReplaceTokenFilter
Public Shared Function PatternReplaceTokenFilter (Optional name As String = Nothing, Optional pattern As String = Nothing, Optional replacement As String = Nothing) As PatternReplaceTokenFilter
Parameters
- 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.
- pattern
- String
A regular expression pattern.
- replacement
- String
The replacement text.
Returns
A new PatternReplaceTokenFilter instance for mocking.