Simran Mehndiratta
Articles
Recent activity by Simran Mehndiratta
-
Parse JSON To Object Function
Function Name:Parse JSON To ObjectPurpose:Assuming the input string is a valid JSON, this function converts the string to a an object containing key/value pairs.Configuration:1. Enter a Display lab...
- Updated
- 0 followers
- 0 comments
- 0 votes
-
Parse JSON To List Function
Function Name:Parse JSON To ListPurpose:Assuming the input string is a valid JSON, this function converts the string to a list of records that can be looped upon.Configuration:1. Enter a Display la...
- Updated
- 0 followers
- 0 comments
- 0 votes
-
Remove Duplicates Function
Function Name:Remove DuplicatesPurpose:Remove Duplicates function is used to remove duplicate elements in a given list. It retains the order of the original list.Configuration:1. Enter a Display la...
- Updated
- 0 followers
- 0 comments
- 0 votes
-
Sort Function
Function Name:SortPurpose:Sort can be used to sort elements of a given list in ascending order. It is based on the underlying core Java java.lang.Comparable interface.The function should be connect...
- Updated
- 0 followers
- 0 comments
- 0 votes
-
Reverse List Function
Function Name:Reverse ListPurpose:The Reverse Function reverses the order of the elements in a given list.The function should be connected to a node that passes in a List/Array of valuesConfigurati...
- Updated
- 0 followers
- 0 comments
- 0 votes
-
Last Function
Function Name:LastPurpose:The Last Function returns the last element of the input list.The function should be connected to a node that passes in a List/Array of values. Configuration:1. Enter a Dis...
- Updated
- 0 followers
- 0 comments
- 0 votes
-
Join Function
Function Name:JoinPurpose:The join function returns a new String composed of copies of the CharSequence elements joined together with a copy of the specified delimiter.Note that if an element is nu...
- Updated
- 0 followers
- 0 comments
- 0 votes
-
First Function
Function Name:FirstPurpose:The First Function returns the first element of a list. The function should be connected to a node that passes in a List/Array of values.Configuration: 1. Enter a Display...
- Updated
- 0 followers
- 0 comments
- 0 votes
-
Upper
Function Name:UpperPurpose:Modifies the input string by changing the all characters to upper case. The function should be connected to a node that passes a text/string value into it.Configuration: ...
- Updated
- 0 followers
- 0 comments
- 0 votes
-
Trim Function
Function Name:TrimPurpose:The Trim function removes all whitespace characters from beginning and end of the input text/string value. The function should be connected to a node that passes a text/st...
- Updated
- 0 followers
- 0 comments
- 0 votes