Search Results for

    Show / Hide Table of Contents

    Class SplitTransformation

    Splits the input by separators, optionally trimming the entries afterwards.

    Inheritance
    object
    BusinessRuleTransformation
    SplitTransformation
    Inherited Members
    BusinessRuleTransformation.TraceRefId
    BusinessRuleTransformation.Names
    BusinessRuleTransformation.Description
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class SplitTransformation : BusinessRuleTransformation

    Properties

    KeepEmpty

    Keeps empty items. Empty items will be returned as empty strings.

    Declaration
    [JsonProperty("keepEmpty", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public bool KeepEmpty { get; set; }
    Property Value
    bool

    Separators

    Separators to use, supports variables, an array of strings including escape sequences or null to split on any white space character.

    Declaration
    [JsonProperty("separators", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public object Separators { get; set; }
    Property Value
    object

    Trim

    Trims each entry for punctuation and white space.

    Declaration
    [JsonProperty("trim", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public bool Trim { get; set; }
    Property Value
    bool

    Methods

    FromJson(string)

    Declaration
    public static SplitTransformation FromJson(string data)
    Parameters
    string data

    Returns
    SplitTransformation

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX