Search Results for

    Show / Hide Table of Contents

    Interface ISplitProcessor

    Splits a field into an array using a separator character. Only works on string fields

    Inherited Members
    IProcessor.Name
    IProcessor.Description
    IProcessor.OnFailure
    IProcessor.If
    IProcessor.Tag
    IProcessor.IgnoreFailure
    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public interface ISplitProcessor : IProcessor

    Properties

    | Edit this page View Source

    Field

    The field to split

    Declaration
    [DataMember(Name = "field")]
    Field Field { get; set; }
    Property Value
    Type Description
    Field
    | Edit this page View Source

    IgnoreMissing

    If true and Field does not exist or is null, the processor quietly exits without modifying the document. Default is false

    Declaration
    [DataMember(Name = "ignore_missing")]
    bool? IgnoreMissing { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    PreserveTrailing

    Preserves empty trailing fields, if any.

    Declaration
    [DataMember(Name = "preserve_trailing")]
    bool? PreserveTrailing { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    Separator

    A regex which matches the separator, eg , or \s+

    Declaration
    [DataMember(Name = "separator")]
    string Separator { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    TargetField

    The field to assign the split value to, by default field is updated in-place

    Declaration
    [DataMember(Name = "target_field")]
    Field TargetField { get; set; }
    Property Value
    Type Description
    Field

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • Field
      • IgnoreMissing
      • PreserveTrailing
      • Separator
      • TargetField
    • Extension Methods
    Back to top Generated by DocFX