Remove Null Item From List
- 19 Dec 2022
- 1 Minute to read
- Print
- DarkLight
Remove Null Item From List
- Updated on 19 Dec 2022
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Step Details | |
Introduced in Version | 4.0.0 |
Last Modified in Version | 7.12.0 |
Location | Data > Lists |
The Remove Null Item From List step removes null objects from an inputted list. The ListType that will be accepted as an input can be selected under the DATA section for the step.
Properties
Inputs
Property | Description | Data Type |
---|---|---|
Original List | The string to break into a substring. | List of Datatype |
Outputs
Property | Description | Data Type |
---|---|---|
New List | The part of the string that was extracted. | List of Datatype |
Example Inputs and Outputs
Original List | New List |
---|---|
["First String", "Second String", "NULL", "After Null"] | ["First String", "Second String", "After Null"] |
["First String", "Second String", "NULL", Object3] | EXCEPTION |
[True, False, False, NULL, True] | [True, False, False, True] |
[Object1, NULL, Object3, Object4] | [Object1, Object3, Object4] |
Related Information
Was this article helpful?