compare list with variable

0
i have a variable for exmaple ‘one_two’  and have a list which contains one,two,three,four now i need to find if the values in the list are contained this variable. basically from above exmaple i should get the output( in a variable probably ) as ‘one’ and ‘two’ are found in the variable. how to do this. i am able to compare list with list, but not sure how to compare a list with variable.
asked
2 answers
0

Therefore you can use the list operation, with operation find or filter

Update

You could use the contains function. iterate over the list and contains($variable, $IteratorObject/Value)

 

answered
0

Check out Marketplace module ‘ListUitls’, an underrated module for what it can do.

answered