Class SplitProcessor
Splits a field into an array using a separator character. Only works on string fields
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public class SplitProcessor : ProcessorBase, ISplitProcessor, IProcessor
Properties
| Edit this page View SourceField
The field to split
Declaration
public Field Field { get; set; }
Property Value
Type | Description |
---|---|
Field |
IgnoreMissing
If true
and Field does not exist or is null,
the processor quietly exits without modifying the document. Default is false
Declaration
public bool? IgnoreMissing { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Name
Declaration
protected override string Name { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
| Edit this page View SourcePreserveTrailing
Preserves empty trailing fields, if any.
Declaration
public bool? PreserveTrailing { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Separator
A regex which matches the separator, eg , or \s+
Declaration
public string Separator { get; set; }
Property Value
Type | Description |
---|---|
string |
TargetField
The field to assign the split value to, by default field is updated in-place
Declaration
public Field TargetField { get; set; }
Property Value
Type | Description |
---|---|
Field |