Until character¤
Extracts the substring until the character given.
Examples¤
Notation: List of values are represented via square brackets. Example: [first, second] represents a list of two values “first” and “second”.
Example 1:
-
Parameters
- untilCharacter:
c
- untilCharacter:
-
Input values:
[abcde]
-
Returns:
[ab]
Example 2:
-
Parameters
- untilCharacter:
c
- untilCharacter:
-
Input values:
[abab]
-
Returns:
[abab]
Parameter¤
Until character¤
No description
- ID:
untilCharacter - Datatype:
char - Default Value:
None
Advanced Parameter¤
None
Related Plugins¤
- substring — Until character adapts to the content of each value: the extracted portion ends wherever the target character appears. Substring does not adapt; it cuts at configured numeric indices that are the same for every input.