Given two lists of text as inputs, this will need to return only the values in the first list of text that match the second. This will allow the use of ? for single character wildcard matches and \* for any character wildcard matches.If given ""?"" return all one-letter items. if given ""_"" return all items. if given """" return only empty items If looking for ? or _ in your list then use \? or \*Example: Input1: cat, dog, horse, frog input2: c?t, \*og Output1: cat, dog, frog"Price: $0.05 per unit
Application
Text
Inputs (what you have)
Name | Description | Data Type | Required? | Example |
List of text to be filtered | Press the "Enter" key after each email added. | List of Text (Short) | Yes | |
List of filter text | Press the "Enter" key after each email added. | List of Text (Short) | Yes |
Outputs (what you get)
Name | Description | Data Type | Required? | Example |
Filtered list of text | List of Text (Short) | No | ||
Number of items | The number of items in the list of text | Number with decimals | No |
Outcomes
Name | Description |
No result | This status is selected if the job has successfully completed but no result was produced. |
Success | This status is selected if the job has successfully completed. |
Requirements
N/A