Search Results for

    Show / Hide Table of Contents

    Class GsubProcessor

    Converts a string field by applying a regular expression and a replacement. If the field is not a string, the processor will throw an exception.

    Inheritance
    object
    ProcessorBase
    GsubProcessor
    Implements
    IGsubProcessor
    IProcessor
    Inherited Members
    ProcessorBase.If
    ProcessorBase.Tag
    ProcessorBase.IgnoreFailure
    ProcessorBase.OnFailure
    ProcessorBase.Description
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public class GsubProcessor : ProcessorBase, IGsubProcessor, IProcessor

    Properties

    | Edit this page View Source

    Field

    The field to apply the replacement to

    Declaration
    public 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
    public bool? IgnoreMissing { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    Name

    Declaration
    protected override string Name { get; }
    Property Value
    Type Description
    string
    Overrides
    ProcessorBase.Name
    | Edit this page View Source

    Pattern

    The pattern to be replaced

    Declaration
    public string Pattern { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Replacement

    The string to replace the matching patterns with

    Declaration
    public string Replacement { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    TargetField

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

    Declaration
    public Field TargetField { get; set; }
    Property Value
    Type Description
    Field

    Implements

    IGsubProcessor
    IProcessor

    Extension Methods

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