REMFIELD

Renames a field member from a delimited string array separated by a pipe symbol (|).

Supported Script Types

Generic Email Chat Phone Voicemail Work Item

Properties

String

This property is the String and contains multiple fields separated by a delimiter.

You can enter a variable in this property.

Delimiter

This property represents the character that will be used to separate each property.

The default delimiter is a pipe (|) character.

FieldIndex

This property is an index of the property to be removed, starting with 1.

This property is a numeric value and does not require curly brackets {}.

ResultVar
This property is a name of a variable to receive the new string list.

Branches

Default
The Default branch condition will always be used.

Tips and Tricks

  • REMFIELD treats strings the same as FIELD but instead of reading the string, REMFIELD removes a member from the string, for example:
    • String: one,two,three,four,five,six
    • Delimiter:,
    • Field Index: 3
    • Result Var: New String
    • The variable, New String, now would contain: one,two,four,five,six.