Interface IPatternReplaceTokenFilter
The pattern_replace token filter allows to easily handle string replacements based on a regular expression.
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IPatternReplaceTokenFilter : ITokenFilter
Properties
| Edit this page View SourceFlags
The flags for the regular expression
Declaration
[DataMember(Name = "flags")]
string Flags { get; set; }
Property Value
Type | Description |
---|---|
string |
Pattern
The regular expression
Declaration
[DataMember(Name = "pattern")]
string Pattern { get; set; }
Property Value
Type | Description |
---|---|
string |
Replacement
Replacement string
Declaration
[DataMember(Name = "replacement")]
string Replacement { get; set; }
Property Value
Type | Description |
---|---|
string |