Tamper: Explode¶
Plugin ID: eca_tamper:explode
Available since: 1.0.0
Break up sequenced data into an array
Fields¶
Data to be tampered— config key:eca_data-
This field supports tokens.Type:
textfield· Required: yes · Default: empty string Result token name— config key:eca_token_name-
Provide a token name under which the tampered result will be made available for subsequent actions.
This field supports tokens.Type:
textfield· Required: yes · Default: empty string String separator— config key:separator-
This will break up sequenced data into an array. For example, "a, b, c" would get broken up into the array('a', 'b', 'c'). A space can be represented by %s, tabs by %t, newlines by %n, and carriage returns by %r.
This field supports tokens.Type:
textfield· Required: no · Default:, Limit— config key:limit-
If limit is set and positive, the returned items will contain a maximum of limit with the last item containing the rest of string. If limit is negative, all components except the last -limit are returned. If the limit parameter is zero, then this is treated as 1. If limit is not set, then there will be no limit on the number of items returned.
This field supports tokens.Type:
number· Required: no