How to remove item that contains @ from iEnumerable?

For Eg:
Consider a var of DataType IEnumerable
Textlist = {“Apple@”, “Banana”, “Cherry”}

If you want to get only the items which don’t have ‘@’ in it.

Use an Assign actvity:
If need to store the results in the same variable
To: Textlist ; Value : Textlist.Where(Function(x) Not x.Contains(“@”))

If need to get the result in new var type
Create another var of same var type IEnumerable
To: NewVariable ; Value : Textlist.Where(Function(x) Not x.Contains(“@”))

Result is {“Banana”, “Cherry”}